summaryrefslogtreecommitdiff
path: root/util/romcc/tests/linux_test3.c
diff options
context:
space:
mode:
Diffstat (limited to 'util/romcc/tests/linux_test3.c')
-rw-r--r--util/romcc/tests/linux_test3.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/util/romcc/tests/linux_test3.c b/util/romcc/tests/linux_test3.c
index 97187ae5e6..4c7a882f75 100644
--- a/util/romcc/tests/linux_test3.c
+++ b/util/romcc/tests/linux_test3.c
@@ -4,15 +4,15 @@ 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("i = ");
+ print_debug_hex8(i);
print_debug("\n");
-
+
i = i + 1;
}
bottom: