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 adf890679d9ca2d4d3c59343753aa1d7d8c4a05a..1ce72d1c5019d7ceb4aa99d1eb2d12ea3ebd9ff4 100644 |
--- a/src/compiler/mips64/code-generator-mips64.cc |
+++ b/src/compiler/mips64/code-generator-mips64.cc |
@@ -925,8 +925,8 @@ void CodeGenerator::AssembleArchBranch(Instruction* instr, BranchInfo* branch) { |
UNSUPPORTED_COND(kMips64CmpS, branch->condition); |
} |
Label* nan = acceptNaN ? tlabel : flabel; |
- __ BranchFS(tlabel, nan, cc, i.InputSingleRegister(0), |
- i.InputSingleRegister(1)); |
+ __ BranchF32(tlabel, nan, cc, i.InputSingleRegister(0), |
+ i.InputSingleRegister(1)); |
if (!branch->fallthru) __ Branch(flabel); // no fallthru to flabel. |
@@ -938,8 +938,8 @@ void CodeGenerator::AssembleArchBranch(Instruction* instr, BranchInfo* branch) { |
UNSUPPORTED_COND(kMips64CmpD, branch->condition); |
} |
Label* nan = acceptNaN ? tlabel : flabel; |
- __ BranchF(tlabel, nan, cc, i.InputDoubleRegister(0), |
- i.InputDoubleRegister(1)); |
+ __ BranchF64(tlabel, nan, cc, i.InputDoubleRegister(0), |
+ i.InputDoubleRegister(1)); |
if (!branch->fallthru) __ Branch(flabel); // no fallthru to flabel. |
} else { |