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 6acc50a commit 14774adCopy full SHA for 14774ad
llvm/lib/Target/X86/X86ISelLowering.cpp
@@ -3532,14 +3532,6 @@ static bool isAnyZero(ArrayRef<int> Mask) {
3532
return llvm::any_of(Mask, [](int M) { return M == SM_SentinelZero; });
3533
}
3534
3535
-/// Return true if the value of any element in Mask is the zero or undef
3536
-/// sentinel values.
3537
-static bool isAnyZeroOrUndef(ArrayRef<int> Mask) {
3538
- return llvm::any_of(Mask, [](int M) {
3539
- return M == SM_SentinelZero || M == SM_SentinelUndef;
3540
- });
3541
-}
3542
-
3543
/// Return true if Val is undef or if its value falls within the
3544
/// specified range (L, H].
3545
static bool isUndefOrInRange(int Val, int Low, int Hi) {
0 commit comments