diff options
Diffstat (limited to 'src/interpreter.cc')
-rw-r--r-- | src/interpreter.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/interpreter.cc b/src/interpreter.cc index 51d377a7..5c9404cc 100644 --- a/src/interpreter.cc +++ b/src/interpreter.cc @@ -39,6 +39,9 @@ static const char* s_opcode_name[] = { "<invalid>", }; +// Differs from the normal CHECK_RESULT because this one is meant to return the +// interpreter Result type. +#undef CHECK_RESULT #define CHECK_RESULT(expr) \ do { \ if (WABT_FAILED(expr)) \ |