summaryrefslogtreecommitdiff
path: root/src/compiler-support.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/compiler-support.h')
-rw-r--r--src/compiler-support.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/compiler-support.h b/src/compiler-support.h
index eddb2d7f0..a34859190 100644
--- a/src/compiler-support.h
+++ b/src/compiler-support.h
@@ -31,14 +31,4 @@
#define WASM_BUILTIN_UNREACHABLE __assume(false)
#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.
-#define WASM_UNUSED(expr) \
- do { \
- if (sizeof expr) { \
- (void)0; \
- } \
- } while (0)
-
#endif // wasm_compiler_support_h