mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-15 05:24:01 +00:00
Appease the colonials.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108845 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -42,8 +42,8 @@ void SplitAnalysis::clear() {
|
||||
usingLoops_.clear();
|
||||
}
|
||||
|
||||
/// analyseUses - Count instructions, basic blocks, and loops using curli.
|
||||
void SplitAnalysis::analyseUses() {
|
||||
/// analyzeUses - Count instructions, basic blocks, and loops using curli.
|
||||
void SplitAnalysis::analyzeUses() {
|
||||
const MachineRegisterInfo &MRI = mf_.getRegInfo();
|
||||
for (MachineRegisterInfo::reg_iterator I = MRI.reg_begin(curli_->reg);
|
||||
MachineInstr *MI = I.skipInstruction();) {
|
||||
@ -95,7 +95,7 @@ SplitAnalysis::analyzeLoopPeripheralUse(const MachineLoop *Loop) {
|
||||
void SplitAnalysis::analyze(const LiveInterval *li) {
|
||||
clear();
|
||||
curli_ = li;
|
||||
analyseUses();
|
||||
analyzeUses();
|
||||
}
|
||||
|
||||
const MachineLoop *SplitAnalysis::getBestSplitLoop() {
|
||||
|
Reference in New Issue
Block a user