diff --git a/compiler/test/in/asm_labels.js b/compiler/test/in/asm_labels.js index 38971b97..61dc6891 100644 --- a/compiler/test/in/asm_labels.js +++ b/compiler/test/in/asm_labels.js @@ -7,15 +7,17 @@ while (true) { } function foo(counter) { - asm`print ${counter}`; - asm`jump foo always`; - asm`foo:`; - asm`printflush message1`; + asm` + print ${counter} + jump foo always + foo: + printflush message1`; } function bar(counter) { - asm`print ${counter}`; - asm`jump bar always`; - asm`bar:`; - asm`printflush message1`; + asm` + print ${counter} + jump bar always + bar: + printflush message1`; }