Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / tls / section-1.c
blob4fc5066b90dcb71b8620aa9d13fb06ffc1c6f3f0
1 /* Verify that we get errors for trying to put TLS data in
2 sections which can't work. */
3 /* { dg-require-effective-target tls } */
5 #define A(X) __attribute__((section(X)))
7 __thread int i A("foo"); /* Ok */
9 __thread int j A(".data"); /* { dg-error "causes a section type conflict" "conflict with .data section" { xfail *-*-* } } */
11 int k A("bar");
12 __thread int l A("bar"); /* { dg-error "causes a section type conflict" "conflict with user-defined section" } */