summaryrefslogtreecommitdiff
path: root/src/compiler-support.h
diff options
context:
space:
mode:
authorDerek Schuff <dschuff@chromium.org>2017-06-28 12:05:27 -0700
committerGitHub <noreply@github.com>2017-06-28 12:05:27 -0700
commite2c08d42ab0ffc05d980ae2d34fee0e77b201134 (patch)
tree4b70d7469df7fdd4ee70abf42534a2f685da4704 /src/compiler-support.h
parent14bcc443282146cb85ef2798c36fcb2fe6fa74fa (diff)
downloadbinaryen-e2c08d42ab0ffc05d980ae2d34fee0e77b201134.tar.gz
binaryen-e2c08d42ab0ffc05d980ae2d34fee0e77b201134.tar.bz2
binaryen-e2c08d42ab0ffc05d980ae2d34fee0e77b201134.zip
Add atomic loads and stores (#1077)
Add IR, wast and binary support for atomic loads and stores. Currently all IR generated by means other than parsing wast and binary files always generates non-atomic accesses, and optimizations have not yet been made aware of atomics, so they are certainly not ready to be used yet.
Diffstat (limited to 'src/compiler-support.h')
-rw-r--r--src/compiler-support.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler-support.h b/src/compiler-support.h
index 3dd873383..f2e58ff5e 100644
--- a/src/compiler-support.h
+++ b/src/compiler-support.h
@@ -27,7 +27,7 @@
// If control flow reaches the point of the WASM_UNREACHABLE(), the program is
// undefined.
-#if __has_builtin(__builtin_unreachable)
+#if __has_builtin(__builtin_unreachable) && defined(NDEBUG)
# define WASM_UNREACHABLE() __builtin_unreachable()
#elif defined(_MSC_VER)
# define WASM_UNREACHABLE() __assume(false)