* tree-ssa-loop-manip.c (split_loop_exit_edge): Return the new block.
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 941021-1.c
blob9fc1cfadf97dfac7b60d4db6b19520885681af05
1 double glob_dbl;
3 f (pdbl, value)
4 double *pdbl;
5 double value;
7 if (pdbl == 0)
8 pdbl = &glob_dbl;
10 *pdbl = value;
13 main ()
15 f ((void *) 0, 55.1);
17 if (glob_dbl != 55.1)
18 abort ();
19 exit (0);