| Index: src/mips/lithium-codegen-mips.h
|
| diff --git a/src/mips/lithium-codegen-mips.h b/src/mips/lithium-codegen-mips.h
|
| index 670c4cc87a7927d8c04fec47c36e14c059e93123..a485b67db9496aed6e3c5dbc31e73dc5153d52cf 100644
|
| --- a/src/mips/lithium-codegen-mips.h
|
| +++ b/src/mips/lithium-codegen-mips.h
|
| @@ -114,7 +114,7 @@ class LCodeGen BASE_EMBEDDED {
|
| DoubleRegister EmitLoadDoubleRegister(LOperand* op,
|
| FloatRegister flt_scratch,
|
| DoubleRegister dbl_scratch);
|
| - int32_t ToRepresentation(LConstantOperand* op, const Representation& r) const;
|
| + int ToRepresentation(LConstantOperand* op, const Representation& r) const;
|
| int32_t ToInteger32(LConstantOperand* op) const;
|
| Smi* ToSmi(LConstantOperand* op) const;
|
| double ToDouble(LConstantOperand* op) const;
|
| @@ -153,7 +153,7 @@ class LCodeGen BASE_EMBEDDED {
|
| void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr,
|
| Label* map_check);
|
|
|
| - void DoDeferredInstanceMigration(LCheckMaps* instr, Register object);
|
| + void DoCheckMapCommon(Register map_reg, Handle<Map> map, LEnvironment* env);
|
|
|
| // Parallel move support.
|
| void DoParallelMove(LParallelMove* move);
|
| @@ -213,7 +213,7 @@ class LCodeGen BASE_EMBEDDED {
|
|
|
| int GetStackSlotCount() const { return chunk()->spill_slot_count(); }
|
|
|
| - void Abort(BailoutReason reason);
|
| + void Abort(const char* reason);
|
| void FPRINTF_CHECKING Comment(const char* format, ...);
|
|
|
| void AddDeferredCode(LDeferredCode* code) { deferred_.Add(code, zone()); }
|
|
|