blockfreq: Use const in MachineBlockFrequencyInfo

<rdar://problem/14292693>

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204740 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Duncan P. N. Exon Smith
2014-03-25 18:01:32 +00:00
parent feaa46379a
commit 8451e1baa9
4 changed files with 18 additions and 16 deletions
+1 -1
View File
@@ -165,7 +165,7 @@ getBlockFreq(const MachineBasicBlock *MBB) const {
return MBFI->getBlockFreq(MBB);
}
MachineFunction *MachineBlockFrequencyInfo::getFunction() const {
const MachineFunction *MachineBlockFrequencyInfo::getFunction() const {
return MBFI->Fn;
}