From a28343a33ed28b4d5c83c37e350aceaf09b5246f Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Thu, 5 Dec 2019 13:09:21 -0600 Subject: Add string parameter to WASM_UNREACHABLE (#2499) This works more like llvm's unreachable handler in that is preserves information even in release builds. --- src/shell-interface.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/shell-interface.h') diff --git a/src/shell-interface.h b/src/shell-interface.h index e73ce4c48..63cbd9807 100644 --- a/src/shell-interface.h +++ b/src/shell-interface.h @@ -120,7 +120,7 @@ struct ShellExternalInterface : ModuleInstance::ExternalInterface { assert(false && "exnref not implemented yet"); case none: case unreachable: - WASM_UNREACHABLE(); + WASM_UNREACHABLE("unexpected type"); } } }); -- cgit v1.2.3