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
)
11 float f (void *a
, void *b
, int c
, float d
)
13 return g (a
, b
, 0, c
, d
);