[llvm] [IR] Mark vector intrinsics speculatable, willreturn (PR #162334)
Nikita Popov via llvm-commits
llvm-commits at lists.llvm.org
Tue Oct 7 11:47:05 PDT 2025
================
@@ -2422,12 +2422,12 @@ def int_loop_dependence_war_mask:
def int_get_active_lane_mask:
DefaultAttrsIntrinsic<[llvm_anyvector_ty],
[llvm_anyint_ty, LLVMMatchType<1>],
- [IntrNoMem]>;
+ [IntrNoMem, IntrSpeculatable, IntrWillReturn]>;
----------------
nikic wrote:
IntrWillReturn is implied by DefaultAttrsIntrinsic
https://github.com/llvm/llvm-project/pull/162334
More information about the llvm-commits
mailing list