Conform to LLVM coding style.
authorMicah Villmow <villmow@gmail.com>
Tue, 31 Jul 2012 18:07:43 +0000 (18:07 +0000)
committerMicah Villmow <villmow@gmail.com>
Tue, 31 Jul 2012 18:07:43 +0000 (18:07 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@161061 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/TargetLowering.cpp

index 172819369df51bc6f837df3c738600945aff47fd..f0c50c1ed3cda62709c4716dd87caf057543c888 100644 (file)
@@ -2464,8 +2464,8 @@ TargetLowering::SimplifySetCC(EVT VT, SDValue N0, SDValue N1,
     // Otherwise, we can't fold it.  However, we can simplify it to SETUO/SETO
     // if it is not already.
     ISD::CondCode NewCond = UOF == 0 ? ISD::SETO : ISD::SETUO;
-    if (NewCond != Cond && (DCI.isBeforeLegalizeOps() 
-        || getCondCodeAction(NewCond, N0.getValueType()) == Legal))
+    if (NewCond != Cond && (DCI.isBeforeLegalizeOps() ||
+          getCondCodeAction(NewCond, N0.getValueType()) == Legal))
       return DAG.getSetCC(dl, VT, N0, N1, NewCond);
   }