Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / abi / param1.C
blobc438a19400e0fc82e154a30ef9625d2ffcfbd1db
1 // { dg-do run }
2 //
4 // Failed on powerpc64-linux for structure sizes > 64 and with size not a
5 // multiple of 8 after padding.
6 struct object
8   int i1;
9   char s1[60];
10   int i2;
11   char s2[64];
14 extern int subr (struct object obj);
16 int main ()
18   struct object obj;
20   obj.i1 = 1234;
21   obj.i2 = 5678;
22   return subr (obj);
25 int subr (struct object obj)
27   return obj.i1 != 1234 || obj.i2 != 5678;