summaryrefslogtreecommitdiff
path: root/src/compiler-support.h
diff options
context:
space:
mode:
authorThomas Lively <7121787+tlively@users.noreply.github.com>2018-11-15 17:28:47 -0800
committerGitHub <noreply@github.com>2018-11-15 17:28:47 -0800
commitc0cf612ccab6b45867b2a4ab3e3565d7dd1b741a (patch)
tree4874a63c3dd12fcc81ba11f78d4b22960091daaa /src/compiler-support.h
parent991bd336973702b4996237fc4610ad52af6718a1 (diff)
downloadbinaryen-c0cf612ccab6b45867b2a4ab3e3565d7dd1b741a.tar.gz
binaryen-c0cf612ccab6b45867b2a4ab3e3565d7dd1b741a.tar.bz2
binaryen-c0cf612ccab6b45867b2a4ab3e3565d7dd1b741a.zip
Use assert in addition to abort for WASM_UNREACHABLE (#1747)
This yields more useful information when something goes wrong.
Diffstat (limited to 'src/compiler-support.h')
-rw-r--r--src/compiler-support.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/compiler-support.h b/src/compiler-support.h
index 5365aa23a..e7cb4db8c 100644
--- a/src/compiler-support.h
+++ b/src/compiler-support.h
@@ -35,8 +35,9 @@
# include "sanitizer/common_interface_defs.h"
# define WASM_UNREACHABLE() do { __sanitizer_print_stack_trace(); __builtin_trap(); } while (0)
#else
+# include <assert.h>
# include <stdlib.h>
-# define WASM_UNREACHABLE() abort()
+# define WASM_UNREACHABLE() do { assert(false); abort(); } while (0)
#endif
#ifdef __GNUC__