annotate gcc/testsuite/gcc.dg/tls/section-1.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 /* Verify that we get errors for trying to put TLS data in
kono
parents:
diff changeset
2 sections which can't work. */
kono
parents:
diff changeset
3 /* { dg-require-effective-target tls_native } */
kono
parents:
diff changeset
4
kono
parents:
diff changeset
5 #define A(X) __attribute__((section(X)))
kono
parents:
diff changeset
6
kono
parents:
diff changeset
7 __thread int i A("foo"); /* Ok */
kono
parents:
diff changeset
8
kono
parents:
diff changeset
9 __thread int j A(".data"); /* { dg-error "causes a section type conflict" "conflict with .data section" { xfail *-*-* } } */
kono
parents:
diff changeset
10
kono
parents:
diff changeset
11 int k A("bar");
kono
parents:
diff changeset
12 __thread int l A("bar"); /* { dg-error "causes a section type conflict" "conflict with user-defined section" } */