Index: src/compiler/code-generator.cc |
diff --git a/src/compiler/code-generator.cc b/src/compiler/code-generator.cc |
index 91602a02a3cde1de9f76bd20cd6ba8698c24012d..d323cf2634f5084d43c563d38c8453423502ee6e 100644 |
--- a/src/compiler/code-generator.cc |
+++ b/src/compiler/code-generator.cc |
@@ -303,6 +303,9 @@ void CodeGenerator::AssembleInstruction(Instruction* instr) { |
} else if (mode == kFlags_set) { |
// Assemble a boolean materialization after this instruction. |
AssembleArchBoolean(instr, condition); |
+ } else if (mode == kFlags_select) { |
+ // Assemble a select after this instruction. |
+ AssembleArchSelect(instr, condition); |
} |
} |