summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSoni L. <EnderMoneyMod@gmail.com>2024-09-24 15:17:18 -0300
committerGitHub <noreply@github.com>2024-09-24 11:17:18 -0700
commit790bc0472552d80671bdf99ba7652876c463d526 (patch)
treeaf56c495ebe6712f4e7ae026ed8664db6b393d0a /src
parent38524984d5a15c433fe111b1367d74c910dbb677 (diff)
downloadwabt-790bc0472552d80671bdf99ba7652876c463d526.tar.gz
wabt-790bc0472552d80671bdf99ba7652876c463d526.tar.bz2
wabt-790bc0472552d80671bdf99ba7652876c463d526.zip
Fix call_ref on empty stack (#2472)
Same issue as #2471 but for `call_ref`. We don't believe there's a prior issue for this.
Diffstat (limited to 'src')
-rw-r--r--src/type-checker.cc15
1 files changed, 4 insertions, 11 deletions
diff --git a/src/type-checker.cc b/src/type-checker.cc
index 37412e15..8d6c3a11 100644
--- a/src/type-checker.cc
+++ b/src/type-checker.cc
@@ -522,21 +522,14 @@ Result TypeChecker::OnCallIndirect(const TypeVector& param_types,
Result TypeChecker::OnIndexedFuncRef(Index* out_index) {
Type type;
- CHECK_RESULT(PeekType(0, &type));
- Result result = Result::Ok;
- if (!(type == Type::Any || type.IsReferenceWithIndex())) {
- TypeVector actual;
- actual.push_back(type);
- std::string message =
- "type mismatch in call_ref, expected reference but got " +
- TypesToString(actual);
- PrintError("%s", message.c_str());
- result = Result::Error;
+ Result result = PeekType(0, &type);
+ if (!type.IsReferenceWithIndex()) {
+ type = Type::Reference;
}
+ result |= PopAndCheck1Type(type, "call_ref");
if (Succeeded(result)) {
*out_index = type.GetReferenceIndex();
}
- result |= DropTypes(1);
return result;
}