diff options
author | Wesley Peck <peckw@wesleypeck.com> | 2011-11-26 21:50:38 +0000 |
---|---|---|
committer | Wesley Peck <peckw@wesleypeck.com> | 2011-11-26 21:50:38 +0000 |
commit | a18f08318afddc7352609c1765c39734c3e3c779 (patch) | |
tree | f1042c3010a43e1edaf8827680d66f3788429e29 /lib/Target/MBlaze/MBlazeFrameLowering.cpp | |
parent | 06cb680779597c35e6b6399dea6f10276273970b (diff) |
Rename a couple of options and fix some simple typos.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@145152 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/MBlaze/MBlazeFrameLowering.cpp')
-rw-r--r-- | lib/Target/MBlaze/MBlazeFrameLowering.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/MBlaze/MBlazeFrameLowering.cpp b/lib/Target/MBlaze/MBlazeFrameLowering.cpp index f28d5a77d4..cb9388c253 100644 --- a/lib/Target/MBlaze/MBlazeFrameLowering.cpp +++ b/lib/Target/MBlaze/MBlazeFrameLowering.cpp @@ -33,7 +33,7 @@ using namespace llvm; namespace llvm { - cl::opt<bool> DisableStackAdjust( + cl::opt<bool> MBDisableStackAdjust( "disable-mblaze-stack-adjust", cl::init(false), cl::desc("Disable MBlaze stack layout adjustment."), @@ -85,7 +85,7 @@ static void replaceFrameIndexes(MachineFunction &MF, //===----------------------------------------------------------------------===// static void analyzeFrameIndexes(MachineFunction &MF) { - if (DisableStackAdjust) return; + if (MBDisableStackAdjust) return; MachineFrameInfo *MFI = MF.getFrameInfo(); MBlazeFunctionInfo *MBlazeFI = MF.getInfo<MBlazeFunctionInfo>(); |