summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/LiveIntervals.h
diff options
context:
space:
mode:
authorAlkis Evlogimenos <alkis@evlogimenos.com>2004-05-29 16:18:57 +0000
committerAlkis Evlogimenos <alkis@evlogimenos.com>2004-05-29 16:18:57 +0000
commit1010116a8f08fcca59c168b371b09001956dafc6 (patch)
treed3292347ad1fbe9302cabeda427370d2b13e6a89 /llvm/lib/CodeGen/LiveIntervals.h
parent446ac250725fb3996a85c1b3f4485a8eb579c1c7 (diff)
downloadbcm5719-llvm-1010116a8f08fcca59c168b371b09001956dafc6.tar.gz
bcm5719-llvm-1010116a8f08fcca59c168b371b09001956dafc6.zip
Remove defs vector from live intervals.
llvm-svn: 13892
Diffstat (limited to 'llvm/lib/CodeGen/LiveIntervals.h')
-rw-r--r--llvm/lib/CodeGen/LiveIntervals.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/LiveIntervals.h b/llvm/lib/CodeGen/LiveIntervals.h
index 7587e4f6f89..ee28cf6bd81 100644
--- a/llvm/lib/CodeGen/LiveIntervals.h
+++ b/llvm/lib/CodeGen/LiveIntervals.h
@@ -36,12 +36,10 @@ namespace llvm {
struct Interval {
typedef std::pair<unsigned, unsigned> Range;
typedef std::vector<Range> Ranges;
- typedef std::vector<unsigned> Defs;
unsigned reg; // the register of this interval
float weight; // weight of this interval (number of uses
// * 10^loopDepth)
Ranges ranges; // the ranges in which this register is live
- Defs defs;
Interval(unsigned r);
bool empty() const { return ranges.empty(); }
OpenPOWER on IntegriCloud