diff options
Diffstat (limited to 'gcc_arm/testsuite/gcc.c-torture/unsorted/loop386.c')
-rwxr-xr-x | gcc_arm/testsuite/gcc.c-torture/unsorted/loop386.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/gcc_arm/testsuite/gcc.c-torture/unsorted/loop386.c b/gcc_arm/testsuite/gcc.c-torture/unsorted/loop386.c deleted file mode 100755 index 429a320..0000000 --- a/gcc_arm/testsuite/gcc.c-torture/unsorted/loop386.c +++ /dev/null @@ -1,15 +0,0 @@ -foo (a) -{ - do - { - puts ("a"); - a -= 1; - } - while (a != 0); -} - -main () -{ - int p[100]; - printf ("%d\n", foo (3)); -} |