summaryrefslogtreecommitdiff
path: root/src/wast-lexer.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/wast-lexer.cc')
-rw-r--r--src/wast-lexer.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wast-lexer.cc b/src/wast-lexer.cc
index 1314a7a9..b384827a 100644
--- a/src/wast-lexer.cc
+++ b/src/wast-lexer.cc
@@ -562,6 +562,7 @@ Token WastLexer::GetToken(WastParser* parser) {
<i> "v128.or" { RETURN_OPCODE(Binary, V128Or); }
<i> "v128.xor" { RETURN_OPCODE(Binary, V128Xor); }
<i> "v128.not" { RETURN_OPCODE(Unary, V128Not); }
+ <i> "v128.bitselect" { RETURN_OPCODE(Ternary, V128BitSelect); }
<i> "type" { RETURN(Type); }
<i> "func" { RETURN(Func); }