| Index: src/arm/macro-assembler-arm.h | 
| diff --git a/src/arm/macro-assembler-arm.h b/src/arm/macro-assembler-arm.h | 
| index 8b9fa2b22162bf0e1b1e1d8343bb3ebd1771fa10..38308e5cdef8a71951428d18a14510b805c9070f 100644 | 
| --- a/src/arm/macro-assembler-arm.h | 
| +++ b/src/arm/macro-assembler-arm.h | 
| @@ -144,8 +144,6 @@ class MacroAssembler: public Assembler { | 
| Condition cond = al); | 
|  | 
| void Call(Label* target); | 
| -  void Push(Register src) { push(src); } | 
| -  void Pop(Register dst) { pop(dst); } | 
|  | 
| // Register move. May do nothing if the registers are identical. | 
| void Move(Register dst, Handle<Object> value); | 
| @@ -1138,14 +1136,14 @@ class MacroAssembler: public Assembler { | 
|  | 
| // Calls Abort(msg) if the condition cond is not satisfied. | 
| // Use --debug_code to enable. | 
| -  void Assert(Condition cond, BailoutReason reason); | 
| +  void Assert(Condition cond, const char* msg); | 
| void AssertFastElements(Register elements); | 
|  | 
| // Like Assert(), but always enabled. | 
| -  void Check(Condition cond, BailoutReason reason); | 
| +  void Check(Condition cond, const char* msg); | 
|  | 
| // Print a message to stdout and abort execution. | 
| -  void Abort(BailoutReason msg); | 
| +  void Abort(const char* msg); | 
|  | 
| // Verify restrictions about code generated in stubs. | 
| void set_generating_stub(bool value) { generating_stub_ = value; } | 
|  |