blob: 83f78de4e7665d276dca466c907f5765c5ba27b7 [file] [log] [blame]
/* { dg-options "-ftls-model=local-exec -mfdpic -mTLS" } */
/* { dg-do compile } */
static __thread int x;
extern void bar ();
int *y;
void foo (void)
{
bar ();
y = &x;
}
/* { dg-final { scan-assembler "sethi.*tlsmoffhi\\(x\\)," } } */