diff options
author | Sam Clegg <sbc@chromium.org> | 2022-03-02 17:07:36 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-02 17:07:36 -0800 |
commit | e385ff4b792aa5497471d80f863e7436fc6a110a (patch) | |
tree | d0d699011a359fe29d07920e914e221fec8d001f /src/shared-validator.cc | |
parent | 1dea1ee053cd9de4345ada0cf0b197066f92968b (diff) | |
download | wabt-e385ff4b792aa5497471d80f863e7436fc6a110a.tar.gz wabt-e385ff4b792aa5497471d80f863e7436fc6a110a.tar.bz2 wabt-e385ff4b792aa5497471d80f863e7436fc6a110a.zip |
Fix function body start/end locations in wasm-validate (#1842)
For text validation, this means the error is always correctly reported on
the final expression in the function.
For binary validation, this means that we report the byte after the last
instruction in the function as the failure location. This is in line
with other binary validation reports. For example, for `type mismatch
in i32.add` we report the validation error at the byte *after* the add
instruction.
Diffstat (limited to 'src/shared-validator.cc')
-rw-r--r-- | src/shared-validator.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/shared-validator.cc b/src/shared-validator.cc index 68630182..5d9de4fe 100644 --- a/src/shared-validator.cc +++ b/src/shared-validator.cc @@ -461,6 +461,7 @@ Result SharedValidator::BeginFunctionBody(const Location& loc, } Result SharedValidator::EndFunctionBody(const Location& loc) { + expr_loc_ = loc; return typechecker_.EndFunction(); } |