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..d3fd8f2d742bea2200413a7e9ff05b7bab1984f4 100644 |
--- a/src/compiler/x64/instruction-selector-x64.cc |
+++ b/src/compiler/x64/instruction-selector-x64.cc |
@@ -608,8 +608,7 @@ void InstructionSelector::VisitUint64Mod(Node* node) { |
void InstructionSelector::VisitChangeFloat32ToFloat64(Node* node) { |
X64OperandGenerator g(this); |
- // TODO(turbofan): X64 SSE conversions should take an operand. |
- Emit(kSSECvtss2sd, g.DefineAsRegister(node), g.UseRegister(node->InputAt(0))); |
+ Emit(kSSECvtss2sd, g.DefineAsRegister(node), g.Use(node->InputAt(0))); |
} |