blob: 43593d52b6c916f0ef7e1e151b5136ef901ef44b [file] [log] [blame]
/* PR rtl-optimization/103837 */
/* { dg-do compile } */
/* { dg-options "-Og -fcompare-debug -fmove-loop-invariants -fnon-call-exceptions -fexceptions -fdelete-dead-exceptions -fno-tree-dce -w" } */
unsigned long int
foo (int x)
{
double a;
int b;
unsigned long int ret = a;
for (;;)
{
b = !!((int) a);
a = x;
}
return ret;
}