2 20030117-1.c from the execute part of the gcc torture tests.
11 int foo (int, int, int);
12 int bar (int, int, int);
15 testTortureExecute (void)
17 if (foo (5, 10, 21) != 12)
20 if (bar (9, 12, 15) != 150)
26 int foo (int x
, int y
, int z
)
28 return (x
+ y
+ z
) / 3;
31 int bar (int x
, int y
, int z
)
33 return foo (x
* x
, y
* y
, z
* z
);