diff options
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/unsorted/call386.c')
-rw-r--r-- | gcc/testsuite/gcc.c-torture/unsorted/call386.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.c-torture/unsorted/call386.c b/gcc/testsuite/gcc.c-torture/unsorted/call386.c new file mode 100644 index 000000000..c82a3be34 --- /dev/null +++ b/gcc/testsuite/gcc.c-torture/unsorted/call386.c @@ -0,0 +1,20 @@ +void foo () {} + +int main () +{ + int i; + for (i = 100000; i >= 0; i--) + { + foo (); + foo (); + foo (); + foo (); + foo (); + foo (); + foo (); + foo (); + foo (); + foo (); + } + return 0; +} |