| Index: src/ia32/lithium-codegen-ia32.cc
|
| diff --git a/src/ia32/lithium-codegen-ia32.cc b/src/ia32/lithium-codegen-ia32.cc
|
| index d6164f946fe15cae4094b36b5f0e01b4c1b2062f..294bf89a601c9e62c35e802d7492fc6405ef246a 100644
|
| --- a/src/ia32/lithium-codegen-ia32.cc
|
| +++ b/src/ia32/lithium-codegen-ia32.cc
|
| @@ -4894,7 +4894,8 @@ void LCodeGen::DoDeferredNumberTagI(LInstruction* instr,
|
| } else {
|
| if (CpuFeatures::IsSupported(SSE2)) {
|
| CpuFeatureScope feature_scope(masm(), SSE2);
|
| - __ LoadUint32(xmm0, reg, xmm1);
|
| + __ LoadUint32(xmm0, reg,
|
| + ToDoubleRegister(LNumberTagU::cast(instr)->temp()));
|
| } else {
|
| // There's no fild variant for unsigned values, so zero-extend to a 64-bit
|
| // int manually.
|
|
|