Index: src/ia32/lithium-ia32.h |
=================================================================== |
--- src/ia32/lithium-ia32.h (revision 6222) |
+++ src/ia32/lithium-ia32.h (working copy) |
@@ -335,27 +335,6 @@ |
}; |
-class LParallelMove : public ZoneObject { |
- public: |
- LParallelMove() : move_operands_(4) { } |
- |
- void AddMove(LOperand* from, LOperand* to) { |
- move_operands_.Add(LMoveOperands(from, to)); |
- } |
- |
- bool IsRedundant() const; |
- |
- const ZoneList<LMoveOperands>* move_operands() const { |
- return &move_operands_; |
- } |
- |
- void PrintDataTo(StringStream* stream) const; |
- |
- private: |
- ZoneList<LMoveOperands> move_operands_; |
-}; |
- |
- |
class LGap: public LInstruction { |
public: |
explicit LGap(HBasicBlock* block) |