[llvm] 8866215 - [Orc] Update the comment so it doesn't mention TargetTriple argument that no longer exists (#210023)

via llvm-commits llvm-commits at lists.llvm.org
Thu Jul 16 04:35:35 PDT 2026


Author: mkovacevic99
Date: 2026-07-16T21:35:30+10:00
New Revision: 8866215f30953c7df146276ac10753de941b1fcb

URL: https://github.com/llvm/llvm-project/commit/8866215f30953c7df146276ac10753de941b1fcb
DIFF: https://github.com/llvm/llvm-project/commit/8866215f30953c7df146276ac10753de941b1fcb.diff

LOG: [Orc] Update the comment so it doesn't mention TargetTriple argument that no longer exists (#210023)

Completes the fix for the
https://github.com/llvm/llvm-project/issues/80097

Added: 
    

Modified: 
    llvm/include/llvm-c/Orc.h

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm-c/Orc.h b/llvm/include/llvm-c/Orc.h
index ce8ee0de2d407..d4cfd92e08bcc 100644
--- a/llvm/include/llvm-c/Orc.h
+++ b/llvm/include/llvm-c/Orc.h
@@ -1059,13 +1059,12 @@ LLVM_C_ABI LLVMErrorRef LLVMOrcCreateDynamicLibrarySearchGeneratorForPath(
  * generator is owned by the client. Ownership is typically transferred by
  * adding the instance to a JITDylib using LLVMOrcJITDylibAddGenerator,
  *
- * Call with the optional TargetTriple argument will succeed if the file at
- * the given path is a static library or a MachO universal binary containing a
- * static library that is compatible with the given triple. Otherwise it will
- * return an error.
+ * Call will succeed if the file at the given path is a static library or a
+ * MachO universal binary containing a static library that is compatible with
+ * the ExecutionSession's triple. Otherwise it will return an error.
  *
  * THIS API IS EXPERIMENTAL AND LIKELY TO CHANGE IN THE NEAR FUTURE!
- * 
+ *
  */
 LLVM_C_ABI LLVMErrorRef LLVMOrcCreateStaticLibrarySearchGeneratorForPath(
     LLVMOrcDefinitionGeneratorRef *Result, LLVMOrcObjectLayerRef ObjLayer,


        


More information about the llvm-commits mailing list