summaryrefslogtreecommitdiff
path: root/test/interp/return-call-indirect.txt
Commit message (Collapse)AuthorAgeFilesLines
* Finish instruction renaming (#1792)Heejin Ahn2021-12-201-8/+8
| | | | | | | | | | | | | This finishes #985. This - replaces the old names in the tests with the new names - drops support for the deprecated names - renames test files to match new instruction names I don't think dropping support for the old names will be a problem at this point. #985 says the old names are supported for convenience but we should remove those too at some point; that "some point" may have well arrived given that three years have passed. The lists of names updated are in #933, #1564, WebAssembly/spec#720.
* Add more tests for tail_call feature (#931)Ben Smith2018-10-161-1/+1
| | | | | | | | | | | | | | * 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.
* Implemented tail call instructions: (#926)Francis McCabe2018-10-121-0/+38
return_call return_call_indirect with some simple tests thereof.