| Index: src/hydrogen-instructions.h
|
| diff --git a/src/hydrogen-instructions.h b/src/hydrogen-instructions.h
|
| index fdf5953caa9389b8e5d8acbf4a8d93b3678941f1..f7cbbee51a2b1caeeaa3161edef631d2c27e245a 100644
|
| --- a/src/hydrogen-instructions.h
|
| +++ b/src/hydrogen-instructions.h
|
| @@ -2510,10 +2510,9 @@ class HCallNew V8_FINAL : public HBinaryCall {
|
|
|
| class HCallNewArray V8_FINAL : public HBinaryCall {
|
| public:
|
| - DECLARE_INSTRUCTION_WITH_CONTEXT_FACTORY_P4(HCallNewArray,
|
| + DECLARE_INSTRUCTION_WITH_CONTEXT_FACTORY_P3(HCallNewArray,
|
| HValue*,
|
| int,
|
| - Handle<Cell>,
|
| ElementsKind);
|
|
|
| HValue* context() { return first(); }
|
| @@ -2521,23 +2520,17 @@ class HCallNewArray V8_FINAL : public HBinaryCall {
|
|
|
| virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
|
|
|
| - Handle<Cell> property_cell() const {
|
| - return type_cell_;
|
| - }
|
| -
|
| ElementsKind elements_kind() const { return elements_kind_; }
|
|
|
| DECLARE_CONCRETE_INSTRUCTION(CallNewArray)
|
|
|
| private:
|
| HCallNewArray(HValue* context, HValue* constructor, int argument_count,
|
| - Handle<Cell> type_cell, ElementsKind elements_kind)
|
| + ElementsKind elements_kind)
|
| : HBinaryCall(context, constructor, argument_count),
|
| - elements_kind_(elements_kind),
|
| - type_cell_(type_cell) {}
|
| + elements_kind_(elements_kind) {}
|
|
|
| ElementsKind elements_kind_;
|
| - Handle<Cell> type_cell_;
|
| };
|
|
|
|
|
|
|