summaryrefslogtreecommitdiff
path: root/src/wasm-shell.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/wasm-shell.cpp')
-rw-r--r--src/wasm-shell.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wasm-shell.cpp b/src/wasm-shell.cpp
index 808ed2ea4..6761e46d8 100644
--- a/src/wasm-shell.cpp
+++ b/src/wasm-shell.cpp
@@ -168,7 +168,7 @@ int main(int argc, char **argv) {
if (curr.size() >= 3) {
expected = builder.parseExpression(*curr[2])->dyn_cast<Const>()->value;
}
- std::cerr << "seen " << result << ", expected " << expected << " from " << *curr[2] << '\n';
+ std::cerr << "seen " << result << ", expected " << expected << '\n';
assert(expected == result);
}
if (id == ASSERT_TRAP) assert(trapped);