| Index: src/ia32/macro-assembler-ia32.cc
|
| diff --git a/src/ia32/macro-assembler-ia32.cc b/src/ia32/macro-assembler-ia32.cc
|
| index 43043e5b27d4cfc922a245ba8711a2078f583463..2fd3fd7aa317719b8b2578ab6df922704c330e8d 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) {
|
| + // Constant pool not implemented on ia32.
|
| + UNREACHABLE();
|
| +}
|
| +
|
| +
|
| void MacroAssembler::EnterFrame(StackFrame::Type type) {
|
| push(ebp);
|
| mov(ebp, esp);
|
|
|