diff options
author | Ben Smith <binjimin@gmail.com> | 2018-10-16 17:00:25 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-16 17:00:25 -0700 |
commit | fd4a696c3d104b8bc2520796e758e66439c079f5 (patch) | |
tree | e42e10bba9a8498290c746284f0f08b5c68c6ad1 /test/interp/return-call-indirect.txt | |
parent | b234c76e30b49f75ddcd095c5f1e7d9d27d82160 (diff) | |
download | wabt-fd4a696c3d104b8bc2520796e758e66439c079f5.tar.gz wabt-fd4a696c3d104b8bc2520796e758e66439c079f5.tar.bz2 wabt-fd4a696c3d104b8bc2520796e758e66439c079f5.zip |
Add more tests for tail_call feature (#931)
* Fix a few places where `call`/`call_indirect` are used instead of
`return_call`, `return_call_indirect`
* Fix `TypeChecker::CheckReturnSignature` to print a better error when
the signatures don't match.
* Don't allow `return_call`/`return_call_indirect` instructions in the
parser unless the tail-call feature is enabled.
* Support folding of `return_call`/`return_call_indirect`
Fixes #929.
Diffstat (limited to 'test/interp/return-call-indirect.txt')
-rw-r--r-- | test/interp/return-call-indirect.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/interp/return-call-indirect.txt b/test/interp/return-call-indirect.txt index 83e478eb..1e386b0e 100644 --- a/test/interp/return-call-indirect.txt +++ b/test/interp/return-call-indirect.txt @@ -1,5 +1,5 @@ ;;; TOOL: run-interp -;;; ARGS: --enable-tail-call +;;; ARGS*: --enable-tail-call (module (type $iii_i (func (param i32 i32 i32)(result i32))) (table anyfunc (elem $facInd)) |