aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJakob Stoklund Olesen <stoklund@2pi.dk>2010-12-07 01:32:45 +0000
committerJakob Stoklund Olesen <stoklund@2pi.dk>2010-12-07 01:32:45 +0000
commit1fe045279b10550f06fd755c1aa6377e67ff0473 (patch)
tree3b1fba367b4450f3fbd3c240fb4df20ba8d9e6d4
parent97b2f727650357c5e3634853463e2fe493f4cdf7 (diff)
downloadexternal_llvm-1fe045279b10550f06fd755c1aa6377e67ff0473.zip
external_llvm-1fe045279b10550f06fd755c1aa6377e67ff0473.tar.gz
external_llvm-1fe045279b10550f06fd755c1aa6377e67ff0473.tar.bz2
Remove unused member.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121098 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/CodeGen/LiveIntervalUnion.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/CodeGen/LiveIntervalUnion.h b/lib/CodeGen/LiveIntervalUnion.h
index 153ee2d..445e7b3 100644
--- a/lib/CodeGen/LiveIntervalUnion.h
+++ b/lib/CodeGen/LiveIntervalUnion.h
@@ -18,7 +18,6 @@
#define LLVM_CODEGEN_LIVEINTERVALUNION
#include "llvm/CodeGen/LiveInterval.h"
-#include <vector>
#include <set>
namespace llvm {
@@ -100,13 +99,6 @@ class LiveIntervalUnion {
// efficiently represent it. Probably need to roll our own B-tree.
typedef std::set<LiveSegment> 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<LiveInterval*> 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