Chromium Code Reviews| Index: src/arm/lithium-codegen-arm.cc |
| =================================================================== |
| --- src/arm/lithium-codegen-arm.cc (revision 8110) |
| +++ src/arm/lithium-codegen-arm.cc (working copy) |
| @@ -82,6 +82,12 @@ |
| status_ = GENERATING; |
| CpuFeatures::Scope scope1(VFP3); |
| CpuFeatures::Scope scope2(ARMv7); |
| + |
| + // Open a frame scope to indicate that there is a frame on the stack. The |
| + // NONE indicates that the scope shouldn't actually generate code to set up |
| + // the frame (that is done in GeneatePrologue). |
| + FrameScope frame_scope(masm_, StackFrame::NONE); |
|
Søren Thygesen Gjesse
2011/05/31 07:51:45
StackFrame::JAVA_SCRIPT?
Erik Corry
2011/05/31 11:52:52
Done.
|
| + |
| return GeneratePrologue() && |
| GenerateBody() && |
| GenerateDeferredCode() && |