diff options
author | Craig Topper <craig.topper@intel.com> | 2018-08-30 19:35:40 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@intel.com> | 2018-08-30 19:35:40 +0000 |
commit | 6666861158de68dfdcd2eddf0433f5dbc1a3acef (patch) | |
tree | 258988dd014f68fee5796dd00087a7dd56694fda /llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | |
parent | 1a8c99e67010d53a1444dfe4e55740db45924240 (diff) | |
download | bcm5719-llvm-6666861158de68dfdcd2eddf0433f5dbc1a3acef.tar.gz bcm5719-llvm-6666861158de68dfdcd2eddf0433f5dbc1a3acef.zip |
[DAGCombiner] Fix bad identation. NFC
llvm-svn: 341103
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index ffe38e3fb06..ce4297def73 100644 --- a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp @@ -4429,7 +4429,7 @@ SDValue DAGCombiner::visitAND(SDNode *N) { return DAG.FoldConstantArithmetic(ISD::AND, SDLoc(N), VT, N0C, N1C); // canonicalize constant to RHS if (DAG.isConstantIntBuildVectorOrConstantInt(N0) && - !DAG.isConstantIntBuildVectorOrConstantInt(N1)) + !DAG.isConstantIntBuildVectorOrConstantInt(N1)) return DAG.getNode(ISD::AND, SDLoc(N), VT, N1, N0); // fold (and x, -1) -> x if (isAllOnesConstant(N1)) |