diff options
author | Craig Topper <craig.topper@intel.com> | 2018-10-28 21:24:20 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@intel.com> | 2018-10-28 21:24:20 +0000 |
commit | 7a18b4bc513d2b9be8b399f48ebd69f98f15a7d9 (patch) | |
tree | 83bab4df051f310d641dd56336c557d50beb658e /llvm/lib | |
parent | 4d837fce884b55cdd2d546ed81008e6a3d2d23d0 (diff) | |
download | bcm5719-llvm-7a18b4bc513d2b9be8b399f48ebd69f98f15a7d9.tar.gz bcm5719-llvm-7a18b4bc513d2b9be8b399f48ebd69f98f15a7d9.zip |
[SelectionDAG] Fix bad indentation. NFC
llvm-svn: 345481
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 23abbf10f53..9a27cf36380 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -4392,10 +4392,10 @@ SDValue SelectionDAG::FoldConstantArithmetic(unsigned Opcode, const SDLoc &DL, SDValue V2 = BV2->getOperand(I); if (SVT.isInteger()) { - if (V1->getValueType(0).bitsGT(SVT)) - V1 = getNode(ISD::TRUNCATE, DL, SVT, V1); - if (V2->getValueType(0).bitsGT(SVT)) - V2 = getNode(ISD::TRUNCATE, DL, SVT, V2); + if (V1->getValueType(0).bitsGT(SVT)) + V1 = getNode(ISD::TRUNCATE, DL, SVT, V1); + if (V2->getValueType(0).bitsGT(SVT)) + V2 = getNode(ISD::TRUNCATE, DL, SVT, V2); } if (V1->getValueType(0) != SVT || V2->getValueType(0) != SVT) |