re PR target/78796 (TLS fails to link on aarch64 with -mcmodel=large)
authorJakub Jelinek <jakub@redhat.com>
Wed, 14 Dec 2016 10:39:36 +0000 (11:39 +0100)
committerJakub Jelinek <jakub@gcc.gnu.org>
Wed, 14 Dec 2016 10:39:36 +0000 (11:39 +0100)
PR target/78796
* gcc.dg/tls/pr78796.c: New test.

From-SVN: r243645

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/tls/pr78796.c [new file with mode: 0644]

index 1d1b03460564233fd3587598e9f97fd6e4df4552..ba53564764852f86189d295d0bf96edbd4618cd9 100644 (file)
@@ -1,3 +1,8 @@
+2016-12-14  Jakub Jelinek  <jakub@redhat.com>
+
+       PR target/78796
+       * gcc.dg/tls/pr78796.c: New test.
+
 2016-12-14  Richard Biener  <rguenther@suse.de>
 
        PR tree-optimization/78731
diff --git a/gcc/testsuite/gcc.dg/tls/pr78796.c b/gcc/testsuite/gcc.dg/tls/pr78796.c
new file mode 100644 (file)
index 0000000..12263da
--- /dev/null
@@ -0,0 +1,32 @@
+/* PR target/78796 */
+/* { dg-do run } */
+/* { dg-options "-O2" } */
+/* { dg-additional-options "-mcmodel=large" { target aarch64-*-* } } */
+/* { dg-require-effective-target tls } */
+
+struct S { int a, b, c, d, e; };
+struct S t;
+__thread struct S s;
+
+__attribute__((used, noinline, noclone)) void
+foo (int *x, int *y)
+{
+  asm volatile ("" : : "g" (x), "g" (y) : "memory");
+  if (*x != 1 || *y != 2)
+    __builtin_abort ();
+}
+
+__attribute__((used, noinline, noclone)) void
+bar (void)
+{
+  foo (&t.c, &s.c);
+}
+
+int
+main ()
+{
+  t.c = 1;
+  s.c = 2;
+  bar ();
+  return 0;
+}