summaryrefslogtreecommitdiff
path: root/src/interpreter.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/interpreter.h')
-rw-r--r--src/interpreter.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/interpreter.h b/src/interpreter.h
index 1b91f5a1..fd1ac5e7 100644
--- a/src/interpreter.h
+++ b/src/interpreter.h
@@ -95,7 +95,8 @@ static const IstreamOffset kInvalidIstreamOffset = ~0;
// NOTE: These enumeration values do not match the standard binary encoding.
enum class Opcode {
-#define WABT_OPCODE(rtype, type1, type2, mem_size, code, Name, text) Name,
+#define WABT_OPCODE(rtype, type1, type2, mem_size, prefix, code, Name, text) \
+ Name,
#include "interpreter-opcode.def"
#undef WABT_OPCODE
Invalid,