mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-17 21:35:07 +00:00
Fix a bug in ISD::isBuildVectorAllOnesInteger that caused it to always return
false git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27131 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
61d4399dfc
commit
452e8354d5
@ -86,12 +86,13 @@ bool ISD::isBuildVectorAllOnesInteger(const SDNode *N) {
|
||||
|
||||
// Do not accept build_vectors that aren't all constants or which have non-~0
|
||||
// elements.
|
||||
if (!isa<ConstantSDNode>(N) || !cast<ConstantSDNode>(N)->isAllOnesValue())
|
||||
SDOperand NotZero = N->getOperand(i);
|
||||
if (!isa<ConstantSDNode>(NotZero) ||
|
||||
!cast<ConstantSDNode>(NotZero)->isAllOnesValue())
|
||||
return false;
|
||||
|
||||
// Okay, we have at least one ~0 value, check to see if the rest match or are
|
||||
// undefs.
|
||||
SDOperand NotZero = N->getOperand(i);
|
||||
for (++i; i != e; ++i)
|
||||
if (N->getOperand(i) != NotZero &&
|
||||
N->getOperand(i).getOpcode() != ISD::UNDEF)
|
||||
|
Loading…
x
Reference in New Issue
Block a user