Files
llvm-6502/include/llvm
Chris Lattner ec2bc64505 Improve comments a bit
Use an explicit LiveRange class to represent ranges instead of an std::pair.
This is a minor cleanup, but is really intended to make a future patch simpler
and less invasive.

Alkis, could you please take a look at LiveInterval::liveAt?  I suspect that
you can add an operator<(unsigned) to LiveRange, allowing us to speed up the
upper_bound call by quite a bit (this would also apply to other callers of
upper/lower_bound).  I would do it myself, but I still don't understand that
crazy liveAt function, despite the comment. :)

Basically I would like to see this:
    LiveRange dummy(index, index+1);
    Ranges::const_iterator r = std::upper_bound(ranges.begin(),
                                                ranges.end(),
                                                dummy);

Turn into:
    Ranges::const_iterator r = std::upper_bound(ranges.begin(),
                                                ranges.end(),
                                                index);


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15130 91177308-0d34-0410-b5e6-96231b3b80d8
2004-07-23 08:24:23 +00:00
..
2004-07-21 08:38:06 +00:00
2004-07-15 02:51:31 +00:00
2004-07-23 08:24:23 +00:00
2004-07-22 08:07:30 +00:00
2004-07-19 21:22:02 +00:00
2004-07-17 23:29:46 +00:00
2004-06-15 21:52:58 +00:00
2004-06-11 21:12:22 +00:00
2004-07-17 23:30:11 +00:00
2004-02-01 00:32:48 +00:00
2004-06-04 20:39:05 +00:00
2004-07-17 23:30:45 +00:00
2003-11-16 20:21:15 +00:00
2004-07-17 23:32:11 +00:00