summaryrefslogtreecommitdiff
path: root/test/run-objdump.py
diff options
context:
space:
mode:
authorBen Smith <binjimin@gmail.com>2017-09-05 12:27:11 -0700
committerGitHub <noreply@github.com>2017-09-05 12:27:11 -0700
commit9251833c182ba914515655620fbe33d416bc83d0 (patch)
tree28d234668c5e0c1a25971165cb201b4c01562053 /test/run-objdump.py
parent0dea3835115ad7ff3c706c7d7e06f4b1bbc56cab (diff)
downloadwabt-9251833c182ba914515655620fbe33d416bc83d0.tar.gz
wabt-9251833c182ba914515655620fbe33d416bc83d0.tar.bz2
wabt-9251833c182ba914515655620fbe33d416bc83d0.zip
Add i{32,64}.extend{8,16,32}_s operators (#610)
* Add i{32,64}.extend{8,16,32}_s operators Also add thread feature (via `--enable-threads`). * Update with re2c generated output
Diffstat (limited to 'test/run-objdump.py')
-rwxr-xr-xtest/run-objdump.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/run-objdump.py b/test/run-objdump.py
index 174c9f81..56411876 100755
--- a/test/run-objdump.py
+++ b/test/run-objdump.py
@@ -49,6 +49,7 @@ def main(args):
parser.add_argument('--dump-debug', action='store_true')
parser.add_argument('--enable-exceptions', action='store_true')
parser.add_argument('--enable-saturating-float-to-int', action='store_true')
+ parser.add_argument('--enable-threads', action='store_true')
parser.add_argument('--gen-wasm', action='store_true',
help='parse with gen-wasm')
parser.add_argument('--spec', action='store_true')
@@ -72,6 +73,7 @@ def main(args):
'--enable-exceptions': options.enable_exceptions,
'--enable-saturating-float-to-int':
options.enable_saturating_float_to_int,
+ '--enable-threads': options.enable_threads,
'--no-check': options.no_check,
'--no-canonicalize-leb128s': options.no_canonicalize_leb128s,
'--spec': options.spec,
@@ -87,6 +89,7 @@ def main(args):
'--enable-exceptions': options.enable_exceptions,
'--enable-saturating-float-to-int':
options.enable_saturating_float_to_int,
+ '--enable-threads': options.enable_threads,
'-h': options.headers,
'-x': options.dump_verbose,
'--debug': options.dump_debug,