Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions src/support/utilities.h
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,8 @@ class Fatal {
// undefined.
#ifndef NDEBUG
#define WASM_UNREACHABLE(msg) wasm::handle_unreachable(msg, __FILE__, __LINE__)
#elif defined(WASM_BUILTIN_UNREACHABLE)
#define WASM_UNREACHABLE(msg) WASM_BUILTIN_UNREACHABLE
#else
#define WASM_UNREACHABLE(msg) wasm::handle_unreachable()
#define WASM_UNREACHABLE(msg) WASM_BUILTIN_UNREACHABLE
#endif

// Helper to create an invocable with an overloaded operator(), for use with
Expand Down