2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.dg / tls / section-1.c
blob741eadba5366baf3a5bddcc0bbd7f923cee66340
1 /* Verify that we get errors for trying to put TLS data in
2 sections which can't work. */
4 #define A(X) __attribute__((section(X)))
6 __thread int i A("foo"); /* Ok */
8 __thread int j A(".data"); /* { dg-error "causes a section type conflict" "conflict with .data section" { xfail *-*-* } } */
10 int k A("bar");
11 __thread int l A("bar"); /* { dg-error "causes a section type conflict" "conflict with user-defined section" } */