diff options
Diffstat (limited to 'test/lld/em_asm_O0.c')
-rw-r--r-- | test/lld/em_asm_O0.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lld/em_asm_O0.c b/test/lld/em_asm_O0.c index b00c75be2..6351f81b5 100644 --- a/test/lld/em_asm_O0.c +++ b/test/lld/em_asm_O0.c @@ -1,6 +1,6 @@ #include <emscripten.h> -int main(int argc, char **argv) { +int main(int argc, char** argv) { EM_ASM({ Module.print("Hello world"); }); int ret = EM_ASM_INT({ return $0 + $1; }, 20, 30); EM_ASM({ Module.print("Got " + $0); }, 42); |