summaryrefslogtreecommitdiff
path: root/src/wast-parser.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/wast-parser.cc')
-rw-r--r--src/wast-parser.cc6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/wast-parser.cc b/src/wast-parser.cc
index 2291e06f..4eb605ec 100644
--- a/src/wast-parser.cc
+++ b/src/wast-parser.cc
@@ -25,12 +25,6 @@
#define WABT_TRACING 0
#include "tracing.h"
-#define CHECK_RESULT(expr) \
- do { \
- if (Failed(expr)) \
- return Result::Error; \
- } while (0)
-
#define EXPECT(token_type) CHECK_RESULT(Expect(TokenType::token_type))
namespace wabt {