blob: 8ee9eb8d0e4b7c49e8cd820876869ac2e48ac86c [file] [log] [blame]
/* { dg-do run } */
/* { dg-options "-O2" } */
struct A
{
int a;
int b;
};
struct A a;
const int B = 42;
void foo (int i)
{
if (i > 10)
a.a = 42;
else
{
a.b = 21;
a.a = a.b + 21;
}
/* This should be folded to 'if (0)' as a.a and B are both 42. */
if (a.a != B)
link_error ();
}
main ()
{
foo (3);
return 0;
}