Index: src/ic/ppc/handler-compiler-ppc.cc |
diff --git a/src/ic/ppc/handler-compiler-ppc.cc b/src/ic/ppc/handler-compiler-ppc.cc |
index 8988b08e2c1749265eb670564f24283d8f010f47..db8ee6849f371e60120dc5fe2a767817f74b5c43 100644 |
--- a/src/ic/ppc/handler-compiler-ppc.cc |
+++ b/src/ic/ppc/handler-compiler-ppc.cc |
@@ -25,7 +25,7 @@ |
// -- lr : return address |
// ----------------------------------- |
{ |
- FrameAndConstantPoolScope scope(masm, StackFrame::INTERNAL); |
+ FrameScope scope(masm, StackFrame::INTERNAL); |
if (accessor_index >= 0) { |
DCHECK(!holder.is(scratch)); |
@@ -62,7 +62,7 @@ |
// -- lr : return address |
// ----------------------------------- |
{ |
- FrameAndConstantPoolScope scope(masm, StackFrame::INTERNAL); |
+ FrameScope scope(masm, StackFrame::INTERNAL); |
// Save value register, so we can restore it later. |
__ push(value()); |
@@ -649,7 +649,7 @@ |
// Save necessary data before invoking an interceptor. |
// Requires a frame to make GC aware of pushed pointers. |
{ |
- FrameAndConstantPoolScope frame_scope(masm(), StackFrame::INTERNAL); |
+ FrameScope frame_scope(masm(), StackFrame::INTERNAL); |
if (must_preserve_receiver_reg) { |
__ Push(receiver(), holder_reg, this->name()); |
} else { |