| Index: src/mips/lithium-codegen-mips.h
|
| diff --git a/src/mips/lithium-codegen-mips.h b/src/mips/lithium-codegen-mips.h
|
| index 6c5b695c28ebec3bee1e0afaa69de9d2ca8049a9..9e246e045c554bdedef5fbcce682d1fd67dd6c02 100644
|
| --- a/src/mips/lithium-codegen-mips.h
|
| +++ b/src/mips/lithium-codegen-mips.h
|
| @@ -113,9 +113,6 @@ class LCodeGen: public LCodeGenBase {
|
| void DoDeferredStringCharCodeAt(LStringCharCodeAt* instr);
|
| void DoDeferredStringCharFromCode(LStringCharFromCode* instr);
|
| void DoDeferredAllocate(LAllocate* instr);
|
| - void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr,
|
| - Label* map_check);
|
| -
|
| void DoDeferredInstanceMigration(LCheckMaps* instr, Register object);
|
| void DoDeferredLoadMutableDouble(LLoadFieldByIndex* instr,
|
| Register result,
|
| @@ -278,10 +275,11 @@ class LCodeGen: public LCodeGenBase {
|
| Condition condition,
|
| FPURegister src1,
|
| FPURegister src2);
|
| - template<class InstrType>
|
| - void EmitFalseBranch(InstrType instr,
|
| - Condition condition,
|
| - Register src1,
|
| + template <class InstrType>
|
| + void EmitTrueBranch(InstrType instr, Condition condition, Register src1,
|
| + const Operand& src2);
|
| + template <class InstrType>
|
| + void EmitFalseBranch(InstrType instr, Condition condition, Register src1,
|
| const Operand& src2);
|
| template<class InstrType>
|
| void EmitFalseBranchF(InstrType instr,
|
|
|