diff options
author | Thomas Lively <7121787+tlively@users.noreply.github.com> | 2018-11-15 17:28:47 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-15 17:28:47 -0800 |
commit | c0cf612ccab6b45867b2a4ab3e3565d7dd1b741a (patch) | |
tree | 4874a63c3dd12fcc81ba11f78d4b22960091daaa /src/compiler-support.h | |
parent | 991bd336973702b4996237fc4610ad52af6718a1 (diff) | |
download | binaryen-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.h | 3 |
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__ |