forked from OSchip/llvm-project
[X86] Fix an assert that was incorrectly checking for BMI instead of AVX512VBMI.
The check is actually unnecessary since AVX512VBMI implies AVX512BW which is the other part of the assert. llvm-svn: 319006
This commit is contained in:
parent
fe6e92d517
commit
074003c8e2
|
@ -2149,8 +2149,7 @@ static void Passv64i1ArgInRegs(
|
|||
const SDLoc &Dl, SelectionDAG &DAG, SDValue Chain, SDValue &Arg,
|
||||
SmallVector<std::pair<unsigned, SDValue>, 8> &RegsToPass, CCValAssign &VA,
|
||||
CCValAssign &NextVA, const X86Subtarget &Subtarget) {
|
||||
assert((Subtarget.hasBWI() || Subtarget.hasBMI()) &&
|
||||
"Expected AVX512BW or AVX512BMI target!");
|
||||
assert(Subtarget.hasBWI() && "Expected AVX512BW target!");
|
||||
assert(Subtarget.is32Bit() && "Expecting 32 bit target");
|
||||
assert(Arg.getValueType() == MVT::i64 && "Expecting 64 bit value");
|
||||
assert(VA.isRegLoc() && NextVA.isRegLoc() &&
|
||||
|
|
Loading…
Reference in New Issue