Adjust indenting of arguments.

llvm-svn: 125727
This commit is contained in:
Cameron Zwarich 2011-02-17 06:13:46 +00:00
parent 0b0cc4d75e
commit ecd44922ab
1 changed files with 3 additions and 3 deletions

View File

@ -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.