* tree-ssa-loop-manip.c (split_loop_exit_edge): Return the new block.
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 931208-1.c
blobee2bc9f1e04df8806e2cf1613afcfbdcb813eaa9
1 f ()
3 unsigned long x, y = 1;
5 x = ((y * 8192) - 216) / 16;
6 return x;
9 main ()
11 if (f () != 498)
12 abort ();
13 exit (0);