From 5ea0c20ce7a161d23a9bf8f1beea0ffb6a02898c Mon Sep 17 00:00:00 2001 From: Peter Zotov Date: Fri, 15 Nov 2013 02:51:01 +0000 Subject: [llvm-c] Simplify signature of LLVMGetTargetFromName LLVMGetTargetFromName was not yet present in an LLVM release, so this does not break compatibility. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194769 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm-c/TargetMachine.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/llvm-c') diff --git a/include/llvm-c/TargetMachine.h b/include/llvm-c/TargetMachine.h index 84f9144..15d664f 100644 --- a/include/llvm-c/TargetMachine.h +++ b/include/llvm-c/TargetMachine.h @@ -64,7 +64,7 @@ LLVMTargetRef LLVMGetNextTarget(LLVMTargetRef T); /*===-- Target ------------------------------------------------------------===*/ /** Finds the target corresponding to the given name and stores it in \p T. Returns 0 on success. */ -LLVMBool LLVMGetTargetFromName(const char *Name, LLVMTargetRef *T); +LLVMTargetRef LLVMGetTargetFromName(const char *Name); /** Finds the target corresponding to the given triple and stores it in \p T. Returns 0 on success. Optionally returns any error in ErrorMessage. -- cgit v1.1