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