diff options
author | Sam Clegg <sbc@chromium.org> | 2019-12-05 13:09:21 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-05 13:09:21 -0600 |
commit | a28343a33ed28b4d5c83c37e350aceaf09b5246f (patch) | |
tree | 084a487cdf79e8025246d2a85d5578c113c9ad51 /src/asm2wasm.h | |
parent | cbf121df96cfce5038f52ed04f9780e19ed3b762 (diff) | |
download | binaryen-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/asm2wasm.h')
-rw-r--r-- | src/asm2wasm.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/asm2wasm.h b/src/asm2wasm.h index 24e9ddc76..048d363ef 100644 --- a/src/asm2wasm.h +++ b/src/asm2wasm.h @@ -1548,7 +1548,7 @@ void Asm2WasmBuilder::processAsm(Ref ast) { break; } default: - WASM_UNREACHABLE(); + WASM_UNREACHABLE("unexpected type"); } } else { assert(old == none); @@ -2060,7 +2060,7 @@ Function* Asm2WasmBuilder::processFunction(Ref ast) { ret->op = NegFloat32; ret->type = Type::f32; } else { - WASM_UNREACHABLE(); + WASM_UNREACHABLE("unexpected asm type"); } return ret; } else if (ast[1] == B_NOT) { @@ -2195,7 +2195,7 @@ Function* Asm2WasmBuilder::processFunction(Ref ast) { ret->type = value->type; return ret; } else { - WASM_UNREACHABLE(); + WASM_UNREACHABLE("unexpected type"); } } if (name == Math_floor || name == Math_sqrt || name == Math_ceil) { @@ -2328,7 +2328,7 @@ Function* Asm2WasmBuilder::processFunction(Ref ast) { process(ast[2][2]), asmToWasmType(view.type)); } - WASM_UNREACHABLE(); + WASM_UNREACHABLE("unexpected atomic op"); } bool tableCall = false; if (wasmOnly) { |