From ec76c8c1d7bf28e025770eb3a84d5ee6c7040d82 Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Mon, 12 Jun 2017 14:43:54 -0700 Subject: Log callImport fatal error to cerr so it is not buffered. (#1036) Use Fatal() rather than stdout or report callImport error Without this the write to stdout can be lost (Since the following line aborts) --- src/compiler-support.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/compiler-support.h') diff --git a/src/compiler-support.h b/src/compiler-support.h index bf2885993..3dd873383 100644 --- a/src/compiler-support.h +++ b/src/compiler-support.h @@ -36,6 +36,14 @@ # define WASM_UNREACHABLE() abort() #endif +#ifdef __GNUC__ +#define WASM_NORETURN __attribute__((noreturn)) +#elif defined(_MSC_VER) +#define WASM_NORETURN __declspec(noreturn) +#else +#define WASM_NORETURN +#endif + // The code might contain TODOs or stubs that read some values but do nothing // with them. The compiler might fail with [-Werror,-Wunused-variable]. // The WASM_UNUSED(varible) is a wrapper that helps to suppress the error. -- cgit v1.2.3