2 20020321-1.c from the execute part of the gcc torture suite.
11 #pragma disable_warning 85
14 /* Produced a SIGILL on ia64 with sibcall from F to G. We hadn't
15 widened the register window to allow for the fourth outgoing
16 argument as an "in" register. */
18 float g (void *a
, void *b
, int e
, int c
, float d
)
23 float f (void *a
, void *b
, int c
, float d
)
25 return g (a
, b
, 0, c
, d
);
29 testTortureExecute (void)