| Index: src/hydrogen-instructions.h
|
| diff --git a/src/hydrogen-instructions.h b/src/hydrogen-instructions.h
|
| index ebc86a97f18cb6c61a3f5c9d94c25ca59e2da4ee..c87bb553b11b96e2790b63d96e8d428f853abc6d 100644
|
| --- a/src/hydrogen-instructions.h
|
| +++ b/src/hydrogen-instructions.h
|
| @@ -1472,21 +1472,13 @@ class HEnterInlined: public HTemplateInstruction<0> {
|
|
|
| class HLeaveInlined: public HTemplateInstruction<0> {
|
| public:
|
| - explicit HLeaveInlined(bool arguments_pushed)
|
| - : arguments_pushed_(arguments_pushed) { }
|
| + HLeaveInlined() { }
|
|
|
| virtual Representation RequiredInputRepresentation(int index) {
|
| return Representation::None();
|
| }
|
|
|
| - bool arguments_pushed() {
|
| - return arguments_pushed_;
|
| - }
|
| -
|
| DECLARE_CONCRETE_INSTRUCTION(LeaveInlined)
|
| -
|
| - private:
|
| - bool arguments_pushed_;
|
| };
|
|
|
|
|
|
|