diff options
| author | Eric Christopher <echristo@gmail.com> | 2015-02-24 19:10:57 +0000 |
|---|---|---|
| committer | Eric Christopher <echristo@gmail.com> | 2015-02-24 19:10:57 +0000 |
| commit | fe59972bbcf872130fdbfd9ab79b84f15fb16932 (patch) | |
| tree | 4e6f9ac594411aae1c26aa3e53cb47afdf8c0d9a /llvm/lib | |
| parent | c1d8a371bfa52239c09f839e3b0a137c9e1f0e10 (diff) | |
| download | bcm5719-llvm-fe59972bbcf872130fdbfd9ab79b84f15fb16932.tar.gz bcm5719-llvm-fe59972bbcf872130fdbfd9ab79b84f15fb16932.zip | |
Rename UpdateRegAllocHint to match style guidelines.
llvm-svn: 230357
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/CodeGen/RegisterCoalescer.cpp | 2 | ||||
| -rw-r--r-- | llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp | 2 | ||||
| -rw-r--r-- | llvm/lib/Target/ARM/ARMBaseRegisterInfo.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/RegisterCoalescer.cpp b/llvm/lib/CodeGen/RegisterCoalescer.cpp index a8afd48bdf5..1e4cfe8f15d 100644 --- a/llvm/lib/CodeGen/RegisterCoalescer.cpp +++ b/llvm/lib/CodeGen/RegisterCoalescer.cpp @@ -1393,7 +1393,7 @@ bool RegisterCoalescer::joinCopy(MachineInstr *CopyMI, bool &Again) { LIS->removeInterval(CP.getSrcReg()); // Update regalloc hint. - TRI->UpdateRegAllocHint(CP.getSrcReg(), CP.getDstReg(), *MF); + TRI->updateRegAllocHint(CP.getSrcReg(), CP.getDstReg(), *MF); DEBUG({ dbgs() << "\tSuccess: " << PrintReg(CP.getSrcReg(), TRI, CP.getSrcIdx()) diff --git a/llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp b/llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp index 0517e3697d1..b3fd4033d21 100644 --- a/llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp +++ b/llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp @@ -264,7 +264,7 @@ ARMBaseRegisterInfo::getRegAllocationHints(unsigned VirtReg, } void -ARMBaseRegisterInfo::UpdateRegAllocHint(unsigned Reg, unsigned NewReg, +ARMBaseRegisterInfo::updateRegAllocHint(unsigned Reg, unsigned NewReg, MachineFunction &MF) const { MachineRegisterInfo *MRI = &MF.getRegInfo(); std::pair<unsigned, unsigned> Hint = MRI->getRegAllocationHint(Reg); diff --git a/llvm/lib/Target/ARM/ARMBaseRegisterInfo.h b/llvm/lib/Target/ARM/ARMBaseRegisterInfo.h index e9bc412e99e..17027c26c2a 100644 --- a/llvm/lib/Target/ARM/ARMBaseRegisterInfo.h +++ b/llvm/lib/Target/ARM/ARMBaseRegisterInfo.h @@ -135,7 +135,7 @@ public: const MachineFunction &MF, const VirtRegMap *VRM) const override; - void UpdateRegAllocHint(unsigned Reg, unsigned NewReg, + void updateRegAllocHint(unsigned Reg, unsigned NewReg, MachineFunction &MF) const override; bool avoidWriteAfterWrite(const TargetRegisterClass *RC) const override; |

