summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorSam Clegg <sbc@chromium.org>2022-11-13 10:14:36 -0800
committerGitHub <noreply@github.com>2022-11-13 18:14:36 +0000
commit0ec54cbdd782b894d9872058dad60f1ee6bd6e44 (patch)
tree28f5d781841995da833cf736a6e685fb1dd7c1f2 /src/tools
parenta3c6ec4364f87f72c58bce85ab0d3bd0289505f0 (diff)
downloadwabt-0ec54cbdd782b894d9872058dad60f1ee6bd6e44.tar.gz
wabt-0ec54cbdd782b894d9872058dad60f1ee6bd6e44.tar.bz2
wabt-0ec54cbdd782b894d9872058dad60f1ee6bd6e44.zip
Update testsuite (#2054)
As well as the testsuite update there are two notable changes that come with it here. These can both be split out an landed first if it makes sense. 1. wasm2c now supports element sections containing externref. Currently only the null reference is supported. 2. element segments no longer use funcref as the default element type but instead, unless explicitly included in the binary, the element type defaults to the type of the table in which the segment is active. Fixes: #1612 #2022
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/spectest-interp.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tools/spectest-interp.cc b/src/tools/spectest-interp.cc
index aae11347..5df00894 100644
--- a/src/tools/spectest-interp.cc
+++ b/src/tools/spectest-interp.cc
@@ -1226,6 +1226,7 @@ CommandRunner::CommandRunner() : store_(s_features) {
} const print_funcs[] = {
{"print", interp::FuncType{{}, {}}},
{"print_i32", interp::FuncType{{ValueType::I32}, {}}},
+ {"print_i64", interp::FuncType{{ValueType::I64}, {}}},
{"print_f32", interp::FuncType{{ValueType::F32}, {}}},
{"print_f64", interp::FuncType{{ValueType::F64}, {}}},
{"print_i32_f32", interp::FuncType{{ValueType::I32, ValueType::F32}, {}}},