mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
Fix a crasher when PerformShiftCombine receives a BUILD_VECTOR of all UNDEF. Probably could use better handling in DAG combine or getNode. Fixes PR11772.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@148285 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
fdebc38523
commit
37c2677fbc
@ -13430,6 +13430,11 @@ static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
|
||||
BaseShAmt = Arg;
|
||||
break;
|
||||
}
|
||||
// Handle the case where the build_vector is all undef
|
||||
// FIXME: Should DAG allow this?
|
||||
if (i == NumElts)
|
||||
return SDValue();
|
||||
|
||||
for (; i != NumElts; ++i) {
|
||||
SDValue Arg = ShAmtOp.getOperand(i);
|
||||
if (Arg.getOpcode() == ISD::UNDEF) continue;
|
||||
|
Loading…
x
Reference in New Issue
Block a user