mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
Interval::HeaderNode is now accessed thorugh an accessor function
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1a750e1d40
commit
a4ef933a04
@ -46,7 +46,7 @@ IntervalPartition::~IntervalPartition() {
|
||||
// getSourceGraphNode.
|
||||
//
|
||||
inline static BasicBlock *getNodeHeader(BasicBlock *BB) { return BB; }
|
||||
inline static BasicBlock *getNodeHeader(Interval *I) { return I->HeaderNode; }
|
||||
inline static BasicBlock *getNodeHeader(Interval *I) { return I->getHeaderNode(); }
|
||||
|
||||
|
||||
// getSourceGraphNode - Given a BasicBlock and the source graph, return the
|
||||
|
Loading…
Reference in New Issue
Block a user