PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr70689.c
blob0529a00fcba26d27082e18c01cb9ff79eabe7dc7
1 /* { dg-do compile } */
2 /* { dg-require-effective-target ia32 } */
3 /* { dg-options "-O1" } */
5 struct S
7 int f;
8 };
10 double a;
11 int c;
13 static
14 void fn1 (struct S *p1)
16 for (; c; )
17 if (p1->f++)
18 a = (int) p1;
21 int
22 main ()
24 struct S b = { 0 };
25 fn1 (&b);
26 return 0;