summaryrefslogtreecommitdiff
path: root/src/tools/spectest-interp.cc
diff options
context:
space:
mode:
authorSam Clegg <sbc@chromium.org>2021-12-13 11:07:44 -0800
committerGitHub <noreply@github.com>2021-12-13 11:07:44 -0800
commit8538a888d4298f98b4a4f17d0e3a9496863cee2b (patch)
tree3a7ea607aca45c4f1a01266827c656c2989aa195 /src/tools/spectest-interp.cc
parent134bafd382348c5bb2e6e5494b84300d0160c2f1 (diff)
downloadwabt-8538a888d4298f98b4a4f17d0e3a9496863cee2b.tar.gz
wabt-8538a888d4298f98b4a4f17d0e3a9496863cee2b.tar.bz2
wabt-8538a888d4298f98b4a4f17d0e3a9496863cee2b.zip
Fix type names for function references (#1787)
This requires `Type::GetName` to return to be dynamicllay created and return `std::string` rather then a `const char*` As this diff shows this type name is only used in textual output and error messages so should this change should not have a effect of binary parse time or the interpreter.
Diffstat (limited to 'src/tools/spectest-interp.cc')
-rw-r--r--src/tools/spectest-interp.cc10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/tools/spectest-interp.cc b/src/tools/spectest-interp.cc
index f7895e47..e1bec2f6 100644
--- a/src/tools/spectest-interp.cc
+++ b/src/tools/spectest-interp.cc
@@ -762,7 +762,7 @@ wabt::Result JSONParser::ParseLaneConstValue(Type lane_type,
}
default:
- PrintError("unknown concrete type: \"%s\"", lane_type.GetName());
+ PrintError("unknown concrete type: \"%s\"", lane_type.GetName().c_str());
return wabt::Result::Error;
}
@@ -834,7 +834,7 @@ wabt::Result JSONParser::ParseConstValue(Type type,
break;
default:
- PrintError("unknown concrete type: \"%s\"", type.GetName());
+ PrintError("unknown concrete type: \"%s\"", type.GetName().c_str());
return wabt::Result::Error;
}
@@ -1657,10 +1657,12 @@ static std::string ExpectedValueToString(const ExpectedValue& ev) {
return TypedValueToString(ev.value);
case ExpectedNan::Arithmetic:
- return StringPrintf("%s:nan:arithmetic", ev.value.type.GetName());
+ return StringPrintf("%s:nan:arithmetic",
+ ev.value.type.GetName().c_str());
case ExpectedNan::Canonical:
- return StringPrintf("%s:nan:canonical", ev.value.type.GetName());
+ return StringPrintf("%s:nan:canonical",
+ ev.value.type.GetName().c_str());
}
break;