| Index: src/a64/macro-assembler-a64.cc
|
| diff --git a/src/a64/macro-assembler-a64.cc b/src/a64/macro-assembler-a64.cc
|
| index 3c1a6e8a33098e5ca33ecf8a22d049fd14d8f16c..d998075ba8dd506e6eb795e43045be8ffe4502f4 100644
|
| --- a/src/a64/macro-assembler-a64.cc
|
| +++ b/src/a64/macro-assembler-a64.cc
|
| @@ -760,7 +760,7 @@ void MacroAssembler::PrepareForPop(int count, int size) {
|
| }
|
|
|
|
|
| -void MacroAssembler::Poke(const Register& src, const Operand& offset) {
|
| +void MacroAssembler::Poke(const CPURegister& src, const Operand& offset) {
|
| if (offset.IsImmediate()) {
|
| ASSERT(offset.immediate() >= 0);
|
| } else if (emit_debug_code()) {
|
| @@ -772,7 +772,7 @@ void MacroAssembler::Poke(const Register& src, const Operand& offset) {
|
| }
|
|
|
|
|
| -void MacroAssembler::Peek(const Register& dst, const Operand& offset) {
|
| +void MacroAssembler::Peek(const CPURegister& dst, const Operand& offset) {
|
| if (offset.IsImmediate()) {
|
| ASSERT(offset.immediate() >= 0);
|
| } else if (emit_debug_code()) {
|
| @@ -2663,7 +2663,7 @@ void MacroAssembler::ExitFrameRestoreFPRegs() {
|
| }
|
|
|
|
|
| -// TODO(jbramley): Check that we're handling FP correctly [GOOGJSE-33].
|
| +// TODO(jbramley): Check that we're handling the frame pointer correctly.
|
| void MacroAssembler::EnterExitFrame(bool save_doubles,
|
| const Register& scratch,
|
| int extra_space) {
|
|
|