Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / execute / 20030117-1.c
blob656bd61ed0ab9cfb1957e9b8c1124f0eca4a158f
1 int foo (int, int, int);
2 int bar (int, int, int);
4 int main (void)
6 if (foo (5, 10, 21) != 12)
7 abort ();
9 if (bar (9, 12, 15) != 150)
10 abort ();
12 exit (0);
15 int foo (int x, int y, int z)
17 return (x + y + z) / 3;
20 int bar (int x, int y, int z)
22 return foo (x * x, y * y, z * z);