| Index: src/compiler/mips/code-generator-mips.cc | 
| diff --git a/src/compiler/mips/code-generator-mips.cc b/src/compiler/mips/code-generator-mips.cc | 
| index f9068644bb31c231718fac4589ca448e53678d63..8b90feb5a2a2b129d2d146d5d64360372f414d9f 100644 | 
| --- a/src/compiler/mips/code-generator-mips.cc | 
| +++ b/src/compiler/mips/code-generator-mips.cc | 
| @@ -860,8 +860,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. | 
|  | 
| @@ -873,8 +873,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. | 
|  | 
|  |