[llvm-commits] [llvm] r121098 - /llvm/trunk/lib/CodeGen/LiveIntervalUnion.h
Jakob Stoklund Olesen
stoklund at 2pi.dk
Mon Dec 6 17:32:46 PST 2010
Author: stoklund
Date: Mon Dec 6 19:32:45 2010
New Revision: 121098
URL: http://llvm.org/viewvc/llvm-project?rev=121098&view=rev
Log:
Remove unused member.
Modified:
llvm/trunk/lib/CodeGen/LiveIntervalUnion.h
Modified: llvm/trunk/lib/CodeGen/LiveIntervalUnion.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/LiveIntervalUnion.h?rev=121098&r1=121097&r2=121098&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/LiveIntervalUnion.h (original)
+++ llvm/trunk/lib/CodeGen/LiveIntervalUnion.h Mon Dec 6 19:32:45 2010
@@ -18,7 +18,6 @@
#define LLVM_CODEGEN_LIVEINTERVALUNION
#include "llvm/CodeGen/LiveInterval.h"
-#include <vector>
#include <set>
namespace llvm {
@@ -100,13 +99,6 @@
// 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
More information about the llvm-commits
mailing list