diff options
author | Sam Clegg <sbc@chromium.org> | 2021-03-12 13:03:56 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-12 21:03:56 +0000 |
commit | 99ae87fb9e5aa7a43cd7ac2a07ee5df681601784 (patch) | |
tree | 4ee7ba7a98bc8b510150ea1561ac2ee76b0bb309 /scripts | |
parent | d31f202cf860ba8690db2f4c3d521dfc6a178b5c (diff) | |
download | binaryen-99ae87fb9e5aa7a43cd7ac2a07ee5df681601784.tar.gz binaryen-99ae87fb9e5aa7a43cd7ac2a07ee5df681601784.tar.bz2 binaryen-99ae87fb9e5aa7a43cd7ac2a07ee5df681601784.zip |
Regenerate lld tests (#3684)
This change as automatically generated by:
$ ./scripts/test/generate_lld_tests.py
$ ./auto_update_tests.py --binaryen-bin=../binaryen-out/bin lld
The changes here are mostly due to:
- llvm now emits names for globals and segments
- emscripten now packs EM_ASM consts into a single contiguous segment
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/test/generate_lld_tests.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/test/generate_lld_tests.py b/scripts/test/generate_lld_tests.py index 00d5ae026..1867d1d7b 100755 --- a/scripts/test/generate_lld_tests.py +++ b/scripts/test/generate_lld_tests.py @@ -67,6 +67,8 @@ def generate_wat_files(llvm_bin, emscripten_root): obj_path, '-o', wasm_path, '--allow-undefined', '--export', '__wasm_call_ctors', + '--export', '__start_em_asm', + '--export', '__stop_em_asm', '--global-base=568', ] # We had a regression where this test only worked if debug names |