diff options
Diffstat (limited to 'util/romcc/tests/linux_test3.c')
-rw-r--r-- | util/romcc/tests/linux_test3.c | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/util/romcc/tests/linux_test3.c b/util/romcc/tests/linux_test3.c deleted file mode 100644 index 4c7a882f75..0000000000 --- a/util/romcc/tests/linux_test3.c +++ /dev/null @@ -1,28 +0,0 @@ -#include "linux_syscall.h" -#include "linux_console.h" -static void goto_test(void) -{ - int i; - print_debug("goto_test\n"); - - i = 0; - goto bottom; - { - top: - print_debug("i = "); - print_debug_hex8(i); - print_debug("\n"); - - i = i + 1; - } - bottom: - if (i < 10) { - goto top; - } -} - -static void main(void) -{ - goto_test(); - _exit(0); -} |