mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
[DAGCombiner] Fix bad identation. NFC
llvm-svn: 341103
This commit is contained in:
parent
bf82fcfa62
commit
8577019430
@ -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))
|
||||
|
Loading…
Reference in New Issue
Block a user