diff options
author | Ben Smith <binji@chromium.org> | 2020-07-21 22:09:11 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-21 22:09:11 -0700 |
commit | efee26853b4c7a3278b014db2fa0db13922f9e21 (patch) | |
tree | a0fb150195a5d41ee829c1bfe3740ec0be21c45d /src | |
parent | cd5ff133f84854f0b269f5cb06193ad8205f05d3 (diff) | |
download | wabt-efee26853b4c7a3278b014db2fa0db13922f9e21.tar.gz wabt-efee26853b4c7a3278b014db2fa0db13922f9e21.tar.bz2 wabt-efee26853b4c7a3278b014db2fa0db13922f9e21.zip |
Fix resolving local names w/ empty func signatures (#1494)
This was originally landed in 6bff9f0, but was incorrect (the test
didn't even do the right thing!)
The problem was that the local index was correctly being updated, but it
happened _after_ the names had already been resolved. To fix it,
`ResolveFuncTypes` and `ResolveNamesModule` needed be called in that
order. There was an erroneous assertion that fired as a result ("This
should only be run after resolving names"), but that's incorrect -- the
code works properly before resolving names too, since
`Module::GetFuncType` can properly look up function types by name.
Thanks to @alexcrichton for pointing this out.
Diffstat (limited to 'src')
-rw-r--r-- | src/wast-parser.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/wast-parser.cc b/src/wast-parser.cc index c3ed9d28..64ac4c82 100644 --- a/src/wast-parser.cc +++ b/src/wast-parser.cc @@ -320,8 +320,6 @@ Result CheckFuncTypeVarMatchesExplicit(const Location& loc, Errors* errors) { Result result = Result::Ok; if (decl.has_func_type) { - // This should only be run after resolving names. - assert(decl.type_var.is_index()); const FuncType* func_type = module.GetFuncType(decl.type_var); if (func_type) { result |= @@ -1040,8 +1038,8 @@ Result WastParser::ParseModuleFieldList(Module* module) { CHECK_RESULT(Synchronize(IsModuleField)); } } - CHECK_RESULT(ResolveNamesModule(module, errors_)); CHECK_RESULT(ResolveFuncTypes(module, errors_)); + CHECK_RESULT(ResolveNamesModule(module, errors_)); return Result::Ok; } |