| Index: src/ast.h
|
| diff --git a/src/ast.h b/src/ast.h
|
| index 41c910a301df5d28cca3147272c7095039b07517..b5f247faee7347faf34e6d4756e966f2d68a05e3 100644
|
| --- a/src/ast.h
|
| +++ b/src/ast.h
|
| @@ -1673,7 +1673,9 @@ class CallNew: public Expression {
|
| virtual bool IsMonomorphic() { return is_monomorphic_; }
|
| Handle<JSFunction> target() const { return target_; }
|
| ElementsKind elements_kind() const { return elements_kind_; }
|
| - Handle<Smi> allocation_elements_kind() const { return alloc_elements_kind_; }
|
| + Handle<JSGlobalPropertyCell> allocation_info_cell() const {
|
| + return allocation_info_cell_;
|
| + }
|
|
|
| BailoutId ReturnId() const { return return_id_; }
|
|
|
| @@ -1698,7 +1700,7 @@ class CallNew: public Expression {
|
| bool is_monomorphic_;
|
| Handle<JSFunction> target_;
|
| ElementsKind elements_kind_;
|
| - Handle<Smi> alloc_elements_kind_;
|
| + Handle<JSGlobalPropertyCell> allocation_info_cell_;
|
|
|
| const BailoutId return_id_;
|
| };
|
|
|