Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.c-torture / compile / 20020418-1.c
blobdf01e6847e3d608f00203f030cb625da2948429e
1 /* PR c/6358
2 This testcase ICEd on IA-32 in foo, because current_function_return_rtx
3 was assigned a hard register only after expand_null_return was called,
4 thus return pseudo was clobbered twice and the hard register not at
5 all. */
7 void baz (void);
9 double foo (void)
11 baz ();
12 return;
15 double bar (void)
17 baz ();