diff --git a/llvm/lib/CodeGen/LiveIntervalUnion.h b/llvm/lib/CodeGen/LiveIntervalUnion.h index 153ee2d66915..445e7b3bf18a 100644 --- a/llvm/lib/CodeGen/LiveIntervalUnion.h +++ b/llvm/lib/CodeGen/LiveIntervalUnion.h @@ -18,7 +18,6 @@ #define LLVM_CODEGEN_LIVEINTERVALUNION #include "llvm/CodeGen/LiveInterval.h" -#include #include namespace llvm { @@ -100,13 +99,6 @@ class LiveIntervalUnion { // efficiently represent it. Probably need to roll our own B-tree. typedef std::set LiveSegments; - // A set of live virtual registers. Elements have type LiveInterval, where - // each element represents the liveness of a single live virtual register. - // This is traditionally known as a live range, but we refer is as a live - // virtual register to avoid confusing it with the misnamed LiveRange - // class. - typedef std::vector LiveVRegs; - public: // SegmentIter can advance to the next segment ordered by starting position // which may belong to a different live virtual register. We also must be able