[llvm] [CodeGen] Add MO_LaneMask type and a new COPY_LANEMASK instruction (PR #151944)
Jay Foad via llvm-commits
llvm-commits at lists.llvm.org
Mon Nov 17 02:12:45 PST 2025
================
@@ -49,6 +49,7 @@ namespace llvm {
constexpr bool operator== (LaneBitmask M) const { return Mask == M.Mask; }
constexpr bool operator!= (LaneBitmask M) const { return Mask != M.Mask; }
constexpr bool operator< (LaneBitmask M) const { return Mask < M.Mask; }
+ constexpr bool operator<=(LaneBitmask M) const { return Mask <= M.Mask; }
----------------
jayfoad wrote:
Remove this
https://github.com/llvm/llvm-project/pull/151944
More information about the llvm-commits
mailing list