Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(99)

Unified Diff: src/compiler/mips64/code-generator-mips64.cc

Issue 988243004: Fix 'MIPS: [turbofan] Support for %_DoubleHi, %_DoubleLo and %_ConstructDouble.' (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/mips64/code-generator-mips64.cc
diff --git a/src/compiler/mips64/code-generator-mips64.cc b/src/compiler/mips64/code-generator-mips64.cc
index 1746afe2fa9996227679b73ce0a33e0fcc02d80f..e6155aa149995dbf4ced457929184ec0c09f2ecb 100644
--- a/src/compiler/mips64/code-generator-mips64.cc
+++ b/src/compiler/mips64/code-generator-mips64.cc
@@ -687,9 +687,6 @@ void CodeGenerator::AssembleArchInstruction(Instruction* instr) {
}
case kMips64FmoveLowUwD:
__ FmoveLow(i.OutputRegister(), i.InputDoubleRegister(0));
- // remove sign.
- __ dsll32(i.OutputRegister(), i.OutputRegister(), 0);
- __ dsrl32(i.OutputRegister(), i.OutputRegister(), 0);
break;
case kMips64FmoveLowDUw:
__ FmoveLow(i.OutputDoubleRegister(), i.InputRegister(1));
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698