PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20041124-1.c
blob51ce2536ea9c4c06393d11332d8e5b2a1cf18151
1 struct s { _Complex unsigned short x; };
2 struct s gs = { 100 + 200i };
3 struct s __attribute__((noinline)) foo (void) { return gs; }
5 int main ()
7 if (foo ().x != gs.x)
8 abort ();
9 exit (0);