summaryrefslogtreecommitdiff
path: root/util/romcc/tests/simple_test75.c
diff options
context:
space:
mode:
Diffstat (limited to 'util/romcc/tests/simple_test75.c')
-rw-r--r--util/romcc/tests/simple_test75.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/util/romcc/tests/simple_test75.c b/util/romcc/tests/simple_test75.c
deleted file mode 100644
index ae28a3ce1a..0000000000
--- a/util/romcc/tests/simple_test75.c
+++ /dev/null
@@ -1,21 +0,0 @@
-static void goto_test(void)
-{
- int i;
-
- i = 0;
- goto bottom;
- {
- top:
- i = i + 1;
- }
- bottom:
- if (i < 10) {
- goto top;
- }
- ;
-}
-
-static void main(void)
-{
- goto_test();
-}