[llvm] expose Function::getFunctionType to LLVM c api (PR #132102)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 19 14:09:52 PDT 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-llvm-ir
Author: Mike Aizatsky (mikea)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/132102.diff
2 Files Affected:
- (modified) llvm/include/llvm-c/Core.h (+7)
- (modified) llvm/lib/IR/Core.cpp (+4)
``````````diff
diff --git a/llvm/include/llvm-c/Core.h b/llvm/include/llvm-c/Core.h
index a414e2061a595..b8f54d02514ef 100644
--- a/llvm/include/llvm-c/Core.h
+++ b/llvm/include/llvm-c/Core.h
@@ -3016,6 +3016,13 @@ LLVMValueRef LLVMGetFirstParam(LLVMValueRef Fn);
*/
LLVMValueRef LLVMGetLastParam(LLVMValueRef Fn);
+/**
+ * Obtain function type.
+ *
+ * @see llvm::Function::getFunctionType()
+ */
+LLVMTypeRef LLVMGetFunctionType(LLVMValueRef Fn);
+
/**
* Obtain the next parameter to a function.
*
diff --git a/llvm/lib/IR/Core.cpp b/llvm/lib/IR/Core.cpp
index f4b03e8cb8aa3..69dba1c2f7966 100644
--- a/llvm/lib/IR/Core.cpp
+++ b/llvm/lib/IR/Core.cpp
@@ -2658,6 +2658,10 @@ void LLVMSetParamAlignment(LLVMValueRef Arg, unsigned align) {
A->addAttr(Attribute::getWithAlignment(A->getContext(), Align(align)));
}
+LLVMTypeRef LLVMGetFunctionType(LLVMValueRef Fn) {
+ return wrap(unwrap<Function>(Fn)->getFunctionType());
+}
+
/*--.. Operations on ifuncs ................................................--*/
LLVMValueRef LLVMAddGlobalIFunc(LLVMModuleRef M,
``````````
</details>
https://github.com/llvm/llvm-project/pull/132102
More information about the llvm-commits
mailing list