| Index: src/arm/lithium-codegen-arm.h
|
| diff --git a/src/arm/lithium-codegen-arm.h b/src/arm/lithium-codegen-arm.h
|
| index 7df1070310b34baa05882623eb9b2c8d5371eaa4..b9681098701e397316ea96ebc4fdadc1616b7082 100644
|
| --- a/src/arm/lithium-codegen-arm.h
|
| +++ b/src/arm/lithium-codegen-arm.h
|
| @@ -57,6 +57,7 @@ class LCodeGen BASE_EMBEDDED {
|
| deopt_jump_table_(4, info->zone()),
|
| deoptimization_literals_(8, info->zone()),
|
| prototype_maps_(0, info->zone()),
|
| + transition_maps_(0, info->zone()),
|
| inlined_function_count_(0),
|
| scope_(info->scope()),
|
| status_(UNUSED),
|
| @@ -417,6 +418,7 @@ class LCodeGen BASE_EMBEDDED {
|
| ZoneList<JumpTableEntry> deopt_jump_table_;
|
| ZoneList<Handle<Object> > deoptimization_literals_;
|
| ZoneList<Handle<Map> > prototype_maps_;
|
| + ZoneList<Handle<Map> > transition_maps_;
|
| int inlined_function_count_;
|
| Scope* const scope_;
|
| Status status_;
|
|
|