blob: 0529a00fcba26d27082e18c01cb9ff79eabe7dc7 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-require-effective-target ia32 } */
/* { dg-options "-O1" } */
struct S
{
int f;
};
double a;
int c;
static
void fn1 (struct S *p1)
{
for (; c; )
if (p1->f++)
a = (int) p1;
}
int
main ()
{
struct S b = { 0 };
fn1 (&b);
return 0;
}