We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e6ba60 commit 9fe3edeCopy full SHA for 9fe3ede
llvm/lib/Target/X86/X86ISelLowering.cpp
@@ -14328,9 +14328,9 @@ static SDValue lowerV8I16GeneralSingleInputShuffle(
14328
14329
// At this point, each half should contain all its inputs, and we can then
14330
// just shuffle them into their final position.
14331
- assert(count_if(LoMask, [](int M) { return M >= 4; }) == 0 &&
+ assert(none_of(LoMask, [](int M) { return M >= 4; }) &&
14332
"Failed to lift all the high half inputs to the low mask!");
14333
- assert(count_if(HiMask, [](int M) { return M >= 0 && M < 4; }) == 0 &&
+ assert(none_of(HiMask, [](int M) { return M >= 0 && M < 4; }) &&
14334
"Failed to lift all the low half inputs to the high mask!");
14335
14336
// Do a half shuffle for the low mask.
0 commit comments