OSDN Git Service

Apply clang-format as commented in D31311. NFCI.
authorSimon Pilgrim <llvm-dev@redking.me.uk>
Fri, 24 Mar 2017 23:47:41 +0000 (23:47 +0000)
committerSimon Pilgrim <llvm-dev@redking.me.uk>
Fri, 24 Mar 2017 23:47:41 +0000 (23:47 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@298751 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/SelectionDAG.cpp

index 79fdfad..d3e33a5 100644 (file)
@@ -3162,7 +3162,8 @@ unsigned SelectionDAG::ComputeNumSignBits(SDValue Op, unsigned Depth) const {
       Op.getOpcode() == ISD::INTRINSIC_W_CHAIN ||
       Op.getOpcode() == ISD::INTRINSIC_VOID) {
     unsigned NumBits = TLI->ComputeNumSignBitsForTargetNode(Op, *this, Depth);
-    if (NumBits > 1) FirstAnswer = std::max(FirstAnswer, NumBits);
+    if (NumBits > 1)
+      FirstAnswer = std::max(FirstAnswer, NumBits);
   }
 
   // Finally, if we can prove that the top bits of the result are 0's or 1's,