blob: b94aae1d89cf24716fc2cb7b14ba428a72a2e2c6 [file] [log] [blame]
/* PR rtl-optimization/56847 */
/* { dg-do compile { target pie } } */
/* { dg-options "-O2 -fpie" } */
struct S { long int a, b; } e;
__thread struct S s;
void
foo (void)
{
s = e;
}