diff options
author | Simon Pilgrim <llvm-dev@redking.me.uk> | 2017-03-24 23:47:41 +0000 |
---|---|---|
committer | Simon Pilgrim <llvm-dev@redking.me.uk> | 2017-03-24 23:47:41 +0000 |
commit | dbc94db3f3b55304ede10bf1e6bd711f4bbe2769 (patch) | |
tree | 55e7aaa77cbb1865df1dd3db023d5bda329611dc | |
parent | 6b78e16368bb74bb51024becf91356b38af56b5d (diff) | |
download | bcm5719-llvm-dbc94db3f3b55304ede10bf1e6bd711f4bbe2769.tar.gz bcm5719-llvm-dbc94db3f3b55304ede10bf1e6bd711f4bbe2769.zip |
Apply clang-format as commented in D31311. NFCI.
llvm-svn: 298751
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 79fdfad960e..d3e33a5e8c5 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -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, |