[clang] [llvm] [LLVM][IRBuilder] Add `CreateIntrinsicWithoutFolding` overloads (PR #207354)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Jul 3 01:50:15 PDT 2026
github-actions[bot] wrote:
<!--LLVM IDS CHECK COMMENT-->
:warning: LLVM ABI annotation checker, ids-check found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
Build idt from compnerd/ids, then for each changed header:
idt -p build/ --main-file <matching-source.cpp> \
--apply-fixits --inplace <header>
``````````
</details>
<details>
<summary>
View the diff from ids-check here.
</summary>
``````````diff
diff --git a/llvm/include/llvm/IR/IRBuilder.h b/llvm/include/llvm/IR/IRBuilder.h
index cc3b97f36..2bc2448c0 100644
--- a/llvm/include/llvm/IR/IRBuilder.h
+++ b/llvm/include/llvm/IR/IRBuilder.h
@@ -976,7 +976,7 @@ public:
/// Create a call to intrinsic \p ID with \p Args, mangled using
/// \p OverloadTypes. It is guaranteed not to fold.
- LLVM_ABI CallInst *CreateIntrinsicWithoutFolding(
+ CallInst *CreateIntrinsicWithoutFolding(
Intrinsic::ID ID, ArrayRef<Type *> OverloadTypes, ArrayRef<Value *> Args,
const Twine &Name, ArrayRef<OperandBundleDef> OpBundles = {}) {
return CreateIntrinsicWithoutFolding(ID, OverloadTypes, Args, {}, Name,
@@ -985,7 +985,7 @@ public:
/// Create a call to intrinsic \p ID with \p Args, mangled using
/// \p OverloadTypes. It is guaranteed not to fold.
- LLVM_ABI CallInst *
+ CallInst *
CreateIntrinsicWithoutFolding(Intrinsic::ID ID,
ArrayRef<Type *> OverloadTypes,
ArrayRef<Value *> Args) {
``````````
</details>
https://github.com/llvm/llvm-project/pull/207354
More information about the llvm-commits
mailing list