| Index: src/ia32/macro-assembler-ia32.cc
|
| diff --git a/src/ia32/macro-assembler-ia32.cc b/src/ia32/macro-assembler-ia32.cc
|
| index 9a0c8d6be268f2ea376191da818586312e5f94a1..9c0a3550eb81cc87ccac487f21ac8675f43b94e4 100644
|
| --- a/src/ia32/macro-assembler-ia32.cc
|
| +++ b/src/ia32/macro-assembler-ia32.cc
|
| @@ -896,6 +896,13 @@ void MacroAssembler::Prologue(bool code_pre_aging) {
|
| }
|
|
|
|
|
| +void MacroAssembler::EnterFrame(StackFrame::Type type,
|
| + bool load_constant_pool_pointer_reg) {
|
| + // Out-of-line constant pool not implemented on ia32.
|
| + UNREACHABLE();
|
| +}
|
| +
|
| +
|
| void MacroAssembler::EnterFrame(StackFrame::Type type) {
|
| push(ebp);
|
| mov(ebp, esp);
|
|
|