summaryrefslogtreecommitdiff
path: root/test/lld/em_asm_O0.c
diff options
context:
space:
mode:
authorSam Clegg <sbc@chromium.org>2022-08-02 15:41:06 -0700
committerGitHub <noreply@github.com>2022-08-02 15:41:06 -0700
commit3d3350d789d909445c8d8d03545c50bc0ae416ef (patch)
treeb044afd8490166160889b14f5bd6406a0708f606 /test/lld/em_asm_O0.c
parentdeb40b7cd6d02adc14c09782b2211e2d68c612b1 (diff)
downloadbinaryen-3d3350d789d909445c8d8d03545c50bc0ae416ef.tar.gz
binaryen-3d3350d789d909445c8d8d03545c50bc0ae416ef.tar.bz2
binaryen-3d3350d789d909445c8d8d03545c50bc0ae416ef.zip
Re-run scripts/test/generate_lld_tests.py. NFC (#4861)
Diffstat (limited to 'test/lld/em_asm_O0.c')
-rw-r--r--test/lld/em_asm_O0.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lld/em_asm_O0.c b/test/lld/em_asm_O0.c
index 6351f81b5..352a8ed84 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() {
EM_ASM({ Module.print("Hello world"); });
int ret = EM_ASM_INT({ return $0 + $1; }, 20, 30);
EM_ASM({ Module.print("Got " + $0); }, 42);