Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.target / s390 / pr106355.h
blob362908e5913f6ad071373f1f5688d2a51de8023f
1 /* For the S/390 ABI parameter D is passed in GPR 5 and 6 and the latter is
2 call-saved which prohibits sibling call optimization. This must hold true
3 also if the mode of the parameter is BLKmode. */
5 typedef struct
7 short x;
8 char y[6];
9 } t;
11 extern t d;
13 extern void bar (int a, int b, int c, t d);
15 void foo (int a, int b, int c)
17 bar (a, b, c, d);