diff options
author | Alon Zakai <azakai@google.com> | 2020-08-17 16:18:06 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-17 16:18:06 -0700 |
commit | 8139c9d99d4639a2173e51828a6e7bbae397fc2c (patch) | |
tree | 23a903c6039a0e776a99d9d69f4419aa33e3b88c /test/lld/em_asm_O0.c | |
parent | 825c6a8f218666e3c0dc190e4ef2c474ce34734c (diff) | |
download | binaryen-8139c9d99d4639a2173e51828a6e7bbae397fc2c.tar.gz binaryen-8139c9d99d4639a2173e51828a6e7bbae397fc2c.tar.bz2 binaryen-8139c9d99d4639a2173e51828a6e7bbae397fc2c.zip |
Add a C source for for test/lld/em_asm_O0 (#3045)
That had just a wat file, with no C. This adds a C file as best I
can guess - looks pretty close - and updates all the lld tests with
scripts/test/generate_lld_tests.py and ./auto_update_tests.py lld
As the diff shows, the handwritten wat was very different than what
emcc+lld emit now. I think we must have switches EM_ASMs to
be variadic at some point? That is what they currently are, and
would explain the diff.
See the discussion that led to this in #3044
Diffstat (limited to 'test/lld/em_asm_O0.c')
-rw-r--r-- | test/lld/em_asm_O0.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/lld/em_asm_O0.c b/test/lld/em_asm_O0.c new file mode 100644 index 000000000..b00c75be2 --- /dev/null +++ b/test/lld/em_asm_O0.c @@ -0,0 +1,8 @@ +#include <emscripten.h> + +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); + return ret; +} |