| Index: src/lithium.h
|
| diff --git a/src/lithium.h b/src/lithium.h
|
| index 754f88da82184816de334a89daf09a86a55c1231..a0771337d3800eb9a0433acaca4f15eaa2dfd952 100644
|
| --- a/src/lithium.h
|
| +++ b/src/lithium.h
|
| @@ -342,17 +342,6 @@ class LConstantOperand V8_FINAL : public LOperand {
|
| };
|
|
|
|
|
| -class LArgument V8_FINAL : public LOperand {
|
| - public:
|
| - explicit LArgument(int index) : LOperand(ARGUMENT, index) { }
|
| -
|
| - static LArgument* cast(LOperand* op) {
|
| - ASSERT(op->IsArgument());
|
| - return reinterpret_cast<LArgument*>(op);
|
| - }
|
| -};
|
| -
|
| -
|
| class LStackSlot V8_FINAL : public LOperand {
|
| public:
|
| static LStackSlot* Create(int index, Zone* zone) {
|
|
|