gcc/
[official-gcc.git] / gcc / testsuite / gcc.dg / tls / alpha-1.c
blob1f0d6eda1d884fa4420cb1386a5cbe81e68ea5fe
1 /* Make sure that we honor initial-exec. */
2 /* { dg-do compile { target alpha*-*-* } } */
3 /* { dg-options "" } */
4 /* { dg-require-effective-target tls_native } */
6 static __thread int xyzzy __attribute__ ((tls_model ("initial-exec")));
7 int foo(void) { return xyzzy; }
9 /* { dg-final { scan-assembler "gottprel" } } */
10 /* { dg-final { scan-assembler-not "tprel(lo|hi|16)" } } */