2 20030606-1.c from the execute part of the gcc torture tests.
13 int * foo (int *x
, int b
)
24 testTortureExecute (void)
28 memset (a
, 1, sizeof (a
));
30 if (foo (a
, 0) - a
!= 1 || a
[0] != 55 || a
[1] != a
[4])
33 memset (a
, 1, sizeof (a
));
35 if (foo (a
, 2) - a
!= 2 || a
[0] != 55 || a
[1] != 2)