From: Cameron Zwarich Date: Thu, 17 Feb 2011 06:13:46 +0000 (+0000) Subject: Adjust indenting of arguments. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=61a733434d9ee6518b8ddb116594bef7206cb627;p=oota-llvm.git Adjust indenting of arguments. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@125727 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/PHIElimination.cpp b/lib/CodeGen/PHIElimination.cpp index 169e2265548..5f7cf582c96 100644 --- a/lib/CodeGen/PHIElimination.cpp +++ b/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.