diff options
author | Cameron Zwarich <zwarich@apple.com> | 2011-02-17 06:13:46 +0000 |
---|---|---|
committer | Cameron Zwarich <zwarich@apple.com> | 2011-02-17 06:13:46 +0000 |
commit | ecd44922abd3cb6d3777c87771dfe7db925dd9ca (patch) | |
tree | 5269a2ee912c4f9e2a26c28e14c6564c4bfe68f1 /llvm/lib/CodeGen | |
parent | 0b0cc4d75e7db991a844066fdc896281e7836a72 (diff) | |
download | bcm5719-llvm-ecd44922abd3cb6d3777c87771dfe7db925dd9ca.tar.gz bcm5719-llvm-ecd44922abd3cb6d3777c87771dfe7db925dd9ca.zip |
Adjust indenting of arguments.
llvm-svn: 125727
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/PHIElimination.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/PHIElimination.cpp b/llvm/lib/CodeGen/PHIElimination.cpp index 169e2265548..5f7cf582c96 100644 --- a/llvm/lib/CodeGen/PHIElimination.cpp +++ b/llvm/lib/CodeGen/PHIElimination.cpp @@ -393,9 +393,9 @@ void PHIElimination::analyzePHINodes(const MachineFunction& MF) { } bool PHIElimination::SplitPHIEdges(MachineFunction &MF, - MachineBasicBlock &MBB, - LiveVariables &LV, - MachineLoopInfo *MLI) { + MachineBasicBlock &MBB, + LiveVariables &LV, + MachineLoopInfo *MLI) { if (MBB.empty() || !MBB.front().isPHI() || MBB.isLandingPad()) return false; // Quick exit for basic blocks without PHIs. |