diff options
author | Jim Grosbach <grosbach@apple.com> | 2009-11-16 21:13:22 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2009-11-16 21:13:22 +0000 |
commit | 7bde2971330d8d64d6650d002db9c1ce77f4e4d4 (patch) | |
tree | ec3230fda84a672934368b8c271ee2dfb096f4ae /lib | |
parent | 074fb0252d20dfc4b03bc902b94e11d9cd8592d8 (diff) |
Make the pass class name more explicit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@88964 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/ARM/ARMBaseRegisterInfo.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/Target/ARM/ARMBaseRegisterInfo.cpp b/lib/Target/ARM/ARMBaseRegisterInfo.cpp index 74cbd33725..19762ee5cf 100644 --- a/lib/Target/ARM/ARMBaseRegisterInfo.cpp +++ b/lib/Target/ARM/ARMBaseRegisterInfo.cpp @@ -1464,9 +1464,9 @@ emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const { } namespace { - struct MSAC : public MachineFunctionPass { + struct MaximalStackAlignmentCalculator : public MachineFunctionPass { static char ID; - MSAC() : MachineFunctionPass(&ID) {} + MaximalStackAlignmentCalculator() : MachineFunctionPass(&ID) {} virtual bool runOnMachineFunction(MachineFunction &MF) { MachineFrameInfo *FFI = MF.getFrameInfo(); @@ -1499,10 +1499,12 @@ namespace { } }; - char MSAC::ID = 0; + char MaximalStackAlignmentCalculator::ID = 0; } FunctionPass* -llvm::createARMMaxStackAlignmentCalculatorPass() { return new MSAC(); } +llvm::createARMMaxStackAlignmentCalculatorPass() { + return new MaximalStackAlignmentCalculator(); +} #include "ARMGenRegisterInfo.inc" |