Commit 18bf4c27 authored by balazs.kilvady's avatar balazs.kilvady Committed by Commit bot

Fix 'MIPS: [turbofan] Support for %_DoubleHi, %_DoubleLo and %_ConstructDouble.'

BUG=

Review URL: https://codereview.chromium.org/988243004

Cr-Commit-Position: refs/heads/master@{#27083}
parent fcbe1073
...@@ -687,9 +687,6 @@ void CodeGenerator::AssembleArchInstruction(Instruction* instr) { ...@@ -687,9 +687,6 @@ void CodeGenerator::AssembleArchInstruction(Instruction* instr) {
} }
case kMips64FmoveLowUwD: case kMips64FmoveLowUwD:
__ FmoveLow(i.OutputRegister(), i.InputDoubleRegister(0)); __ FmoveLow(i.OutputRegister(), i.InputDoubleRegister(0));
// remove sign.
__ dsll32(i.OutputRegister(), i.OutputRegister(), 0);
__ dsrl32(i.OutputRegister(), i.OutputRegister(), 0);
break; break;
case kMips64FmoveLowDUw: case kMips64FmoveLowDUw:
__ FmoveLow(i.OutputDoubleRegister(), i.InputRegister(1)); __ FmoveLow(i.OutputDoubleRegister(), i.InputRegister(1));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment