We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed17bf1 commit 740da00Copy full SHA for 740da00
llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
@@ -7518,7 +7518,7 @@ SDValue DAGCombiner::visitAND(SDNode *N) {
7518
// vector as a scalar and use the splat value.
7519
APInt Constant = APInt::getZero(1);
7520
if (const ConstantSDNode *C = isConstOrConstSplat(
7521
- N1, /*AllowUndef=*/false, /*AllowTruncation=*/true)) {
+ N1, /*AllowUndefs=*/false, /*AllowTruncation=*/true)) {
7522
Constant = C->getAPIntValue();
7523
} else if (BuildVectorSDNode *Vector = dyn_cast<BuildVectorSDNode>(N1)) {
7524
unsigned EltBitWidth = Vector->getValueType(0).getScalarSizeInBits();
0 commit comments