Index: src/arm/stub-cache-arm.cc |
diff --git a/src/arm/stub-cache-arm.cc b/src/arm/stub-cache-arm.cc |
index 0c7df71eaf646d0cdb451a05035843daa77e1359..a40d9fcea5475652c129e18fcf4fc6e9d04deb67 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 { |
@@ -1264,7 +1264,7 @@ void StoreStubCompiler::GenerateStoreViaSetter( |
// -- lr : return address |
// ----------------------------------- |
{ |
- FrameScope scope(masm, StackFrame::INTERNAL); |
+ FrameAndConstantPoolScope scope(masm, StackFrame::INTERNAL); |
Register receiver = r1; |
Register value = r0; |
@@ -1395,7 +1395,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. |