2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20020321-1.c
blobd06dd0acd9a4af039eaea7a087ccf3d6fc658772
1 /* PR 3177 */
2 /* Produced a SIGILL on ia64 with sibcall from F to G. We hadn't
3 widened the register window to allow for the fourth outgoing
4 argument as an "in" register. */
6 float g (void *a, void *b, int e, int c, float d)
8 return d;
11 float f (void *a, void *b, int c, float d)
13 return g (a, b, 0, c, d);
16 int main ()
18 f (0, 0, 1, 1);
19 return 0;