| Index: src/ia32/lithium-codegen-ia32.h
|
| diff --git a/src/ia32/lithium-codegen-ia32.h b/src/ia32/lithium-codegen-ia32.h
|
| index 362f091d2bf8ae2c93c7dd503a88212f180807fb..e53bfa8a2cf9b8274daaea002a4bd28ab64034c8 100644
|
| --- a/src/ia32/lithium-codegen-ia32.h
|
| +++ b/src/ia32/lithium-codegen-ia32.h
|
| @@ -86,7 +86,8 @@ class LCodeGen BASE_EMBEDDED {
|
| bool NeedsEagerFrame() const {
|
| return GetStackSlotCount() > 0 ||
|
| info()->is_non_deferred_calling() ||
|
| - !info()->IsStub();
|
| + !info()->IsStub() ||
|
| + info()->requires_frame();
|
| }
|
| bool NeedsDeferredFrame() const {
|
| return !NeedsEagerFrame() && info()->is_deferred_calling();
|
|
|