| Index: src/ia32/macro-assembler-ia32.h
|
| diff --git a/src/ia32/macro-assembler-ia32.h b/src/ia32/macro-assembler-ia32.h
|
| index bff3c041a4f130dcf5630ba316b8dc0fbf6a0ff3..51027ea78c063652970a2936cfc90301e2c23cb3 100644
|
| --- a/src/ia32/macro-assembler-ia32.h
|
| +++ b/src/ia32/macro-assembler-ia32.h
|
| @@ -841,6 +841,7 @@ class MacroAssembler: public Assembler {
|
| void Push(const Operand& src) { push(src); }
|
| void Push(Immediate value) { push(value); }
|
| void Pop(Register dst) { pop(dst); }
|
| + void Pop(const Operand& dst) { pop(dst); }
|
| void PushReturnAddressFrom(Register src) { push(src); }
|
| void PopReturnAddressTo(Register dst) { pop(dst); }
|
|
|
|
|