mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 20:29:48 +00:00
Fix the buildbot
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@191133 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
fcfc234130
commit
7cdc370641
@ -16801,9 +16801,9 @@ static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
|
||||
|
||||
// Try to match a min/max vector operation.
|
||||
if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC) {
|
||||
unsigned Opc;
|
||||
bool NeedSplit;
|
||||
std::tie(Opc, NeedSplit) = matchIntegerMINMAX(Cond, VT, LHS, RHS, DAG, Subtarget);
|
||||
std::pair<unsigned, bool> ret = matchIntegerMINMAX(Cond, VT, LHS, RHS, DAG, Subtarget);
|
||||
unsigned Opc = ret.first;
|
||||
bool NeedSplit = ret.second;
|
||||
|
||||
if (Opc && NeedSplit) {
|
||||
unsigned NumElems = VT.getVectorNumElements();
|
||||
|
Loading…
Reference in New Issue
Block a user