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/support/bits.cpp | |
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/support/bits.cpp')
-rw-r--r-- | src/support/bits.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/support/bits.cpp b/src/support/bits.cpp index c237807ee..2489a0249 100644 --- a/src/support/bits.cpp +++ b/src/support/bits.cpp @@ -17,6 +17,7 @@ #define wasm_support_bits_definitions #include "support/bits.h" #include "../compiler-support.h" +#include "support/utilities.h" namespace wasm { @@ -91,7 +92,7 @@ template<> int CountLeadingZeroes<uint64_t>(uint64_t v) { uint32_t Log2(uint32_t v) { switch (v) { default: - WASM_UNREACHABLE(); + WASM_UNREACHABLE("invalid value"); case 1: return 0; case 2: |