Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / execute / 961223-1.c
blob9bc6cfa354da3c30e0dc002f71227c80c7e53675
1 struct s {
2 double d;
3 };
5 inline struct s
6 sub (struct s s)
8 s.d += 1.0;
9 return s;
12 main ()
14 struct s t = { 2.0 };
15 t = sub (t);
16 if (t.d != 3.0)
17 abort ();
18 exit (0);