Index: src/compiler/x64/instruction-selector-x64.cc |
diff --git a/src/compiler/x64/instruction-selector-x64.cc b/src/compiler/x64/instruction-selector-x64.cc |
index 7f9e40afe2c4a2209b929b7d71440968b84576e1..33d58fcd192915bc218fb2f3aad0bbec9fb0bc10 100644 |
--- a/src/compiler/x64/instruction-selector-x64.cc |
+++ b/src/compiler/x64/instruction-selector-x64.cc |
@@ -651,8 +651,7 @@ void InstructionSelector::VisitChangeUint32ToUint64(Node* node) { |
void InstructionSelector::VisitTruncateFloat64ToFloat32(Node* node) { |
X64OperandGenerator g(this); |
- // TODO(turbofan): X64 SSE conversions should take an operand. |
- Emit(kSSECvtsd2ss, g.DefineAsRegister(node), g.UseRegister(node->InputAt(0))); |
+ Emit(kSSECvtsd2ss, g.DefineAsRegister(node), g.Use(node->InputAt(0))); |
} |