diff options
Diffstat (limited to 'test/regpressure.c')
| -rw-r--r-- | test/regpressure.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/test/regpressure.c b/test/regpressure.c index 6a0708c..1d65294 100644 --- a/test/regpressure.c +++ b/test/regpressure.c @@ -1,8 +1,9 @@ int foo(int a, int b, int c, int d, int e, int f, int (*g)(void)) { - void bar(void); - bar(); + int aa[4]; + void bar(int *); + bar(aa); if (a>0) f-=10*(g()&f); - bar(); + bar(aa); return a + b + c + d + e + f + g(); } |