diff options
author | Alkis Evlogimenos <alkis@evlogimenos.com> | 2004-05-29 16:18:57 +0000 |
---|---|---|
committer | Alkis Evlogimenos <alkis@evlogimenos.com> | 2004-05-29 16:18:57 +0000 |
commit | 1010116a8f08fcca59c168b371b09001956dafc6 (patch) | |
tree | d3292347ad1fbe9302cabeda427370d2b13e6a89 /llvm/lib/CodeGen/LiveIntervals.h | |
parent | 446ac250725fb3996a85c1b3f4485a8eb579c1c7 (diff) | |
download | bcm5719-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.h | 2 |
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(); } |