Index: src/arm/stub-cache-arm.cc |
diff --git a/src/arm/stub-cache-arm.cc b/src/arm/stub-cache-arm.cc |
index 0ccb28b7cd6a5a1148374883267193f1bf068d41..25e84dc57a356397937d8691bd481edcf5dea76b 100644 |
--- a/src/arm/stub-cache-arm.cc |
+++ b/src/arm/stub-cache-arm.cc |
@@ -1162,7 +1162,7 @@ void LoadStubCompiler::GenerateLoadInterceptor( |
// Save necessary data before invoking an interceptor. |
// Requires a frame to make GC aware of pushed pointers. |
{ |
- FrameScope frame_scope(masm(), StackFrame::INTERNAL); |
+ FrameAndConstantPoolScope frame_scope(masm(), StackFrame::INTERNAL); |
if (must_preserve_receiver_reg) { |
__ Push(receiver(), holder_reg, this->name()); |
} else { |
@@ -1262,7 +1262,7 @@ void StoreStubCompiler::GenerateStoreViaSetter( |
// -- lr : return address |
// ----------------------------------- |
{ |
- FrameScope scope(masm, StackFrame::INTERNAL); |
+ FrameAndConstantPoolScope scope(masm, StackFrame::INTERNAL); |
// Save value register, so we can restore it later. |
__ push(value()); |
@@ -1377,7 +1377,7 @@ void LoadStubCompiler::GenerateLoadViaGetter(MacroAssembler* masm, |
// -- lr : return address |
// ----------------------------------- |
{ |
- FrameScope scope(masm, StackFrame::INTERNAL); |
+ FrameAndConstantPoolScope scope(masm, StackFrame::INTERNAL); |
if (!getter.is_null()) { |
// Call the JavaScript getter with the receiver on the stack. |