summaryrefslogtreecommitdiff
path: root/src/interp/interp.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/interp.cc')
-rw-r--r--src/interp/interp.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/interp/interp.cc b/src/interp/interp.cc
index 82a53c1d..7608b7e5 100644
--- a/src/interp/interp.cc
+++ b/src/interp/interp.cc
@@ -1805,6 +1805,7 @@ Result Thread::Run(int num_instructions) {
Opcode opcode = ReadOpcode(&pc);
assert(!opcode.IsInvalid());
switch (opcode) {
+ case Opcode::SelectT:
case Opcode::Select: {
uint32_t cond = Pop<uint32_t>();
Value false_ = Pop();