diff options
Diffstat (limited to 'gcc_arm/testsuite/gcc.c-torture/unsorted/scc.c')
-rwxr-xr-x | gcc_arm/testsuite/gcc.c-torture/unsorted/scc.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/gcc_arm/testsuite/gcc.c-torture/unsorted/scc.c b/gcc_arm/testsuite/gcc.c-torture/unsorted/scc.c deleted file mode 100755 index 79ae4e1..0000000 --- a/gcc_arm/testsuite/gcc.c-torture/unsorted/scc.c +++ /dev/null @@ -1,11 +0,0 @@ -foo (a, b) -{ - if (a < 0) - goto ret1; - if (a == 0) - return 2; - return 3; - ret1: - return 1; -} - |