summaryrefslogtreecommitdiff
path: root/src/parsing.h
diff options
context:
space:
mode:
authorSam Clegg <sbc@chromium.org>2019-12-05 13:09:21 -0600
committerGitHub <noreply@github.com>2019-12-05 13:09:21 -0600
commita28343a33ed28b4d5c83c37e350aceaf09b5246f (patch)
tree084a487cdf79e8025246d2a85d5578c113c9ad51 /src/parsing.h
parentcbf121df96cfce5038f52ed04f9780e19ed3b762 (diff)
downloadbinaryen-a28343a33ed28b4d5c83c37e350aceaf09b5246f.tar.gz
binaryen-a28343a33ed28b4d5c83c37e350aceaf09b5246f.tar.bz2
binaryen-a28343a33ed28b4d5c83c37e350aceaf09b5246f.zip
Add string parameter to WASM_UNREACHABLE (#2499)
This works more like llvm's unreachable handler in that is preserves information even in release builds.
Diffstat (limited to 'src/parsing.h')
-rw-r--r--src/parsing.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parsing.h b/src/parsing.h
index 2591c4357..7017fdb0f 100644
--- a/src/parsing.h
+++ b/src/parsing.h
@@ -265,7 +265,7 @@ parseConst(cashew::IString s, Type type, MixedArena& allocator) {
case v128:
case anyref: // there's no anyref.const
case exnref: // there's no exnref.const
- WASM_UNREACHABLE();
+ WASM_UNREACHABLE("unexpected const type");
case none:
case unreachable: {
return nullptr;