blob: c3a264816d3fbce2e186908d816cf5dfe6feee55 [file] [log] [blame]
/* PR middle-end/46499 */
/* { dg-do compile } */
/* { dg-options "-O -fno-tree-ccp -fno-tree-dominator-opts" } */
extern void abort (void);
static inline int
foo (void)
{
return 0;
}
int
main ()
{
if ((foo () == 1) & (foo () == 1))
abort ();
return 0;
}