mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 06:09:05 +00:00
Do not introduce new shuffle patterns after operation legalization if SHUFFLE_VECTOR
was marked custom. The target independent DAG combine has no way to know if the shuffles it is introducing are ones that the target could support or not. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@216678 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
98491c0ff9
commit
538b1cbdf5
@ -10316,8 +10316,7 @@ SDValue DAGCombiner::visitBUILD_VECTOR(SDNode *N) {
|
||||
// at most two distinct vectors, turn this into a shuffle node.
|
||||
|
||||
// May only combine to shuffle after legalize if shuffle is legal.
|
||||
if (LegalOperations &&
|
||||
!TLI.isOperationLegalOrCustom(ISD::VECTOR_SHUFFLE, VT))
|
||||
if (LegalOperations && !TLI.isOperationLegal(ISD::VECTOR_SHUFFLE, VT))
|
||||
return SDValue();
|
||||
|
||||
SDValue VecIn1, VecIn2;
|
||||
|
Loading…
Reference in New Issue
Block a user