summaryrefslogtreecommitdiff
path: root/lib/Linker
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2012-05-09 08:55:40 +0000
committerBill Wendling <isanbard@gmail.com>2012-05-09 08:55:40 +0000
commitf24fde20c8d6db5a52b50a010e831c9159d3fec7 (patch)
tree1ac4b1367d308b7ecb6b36e2b13c96d69577adbe /lib/Linker
parentb12af898c317e64bba3ac1692073c812503e01c4 (diff)
downloadllvm-f24fde20c8d6db5a52b50a010e831c9159d3fec7.tar.gz
llvm-f24fde20c8d6db5a52b50a010e831c9159d3fec7.tar.bz2
llvm-f24fde20c8d6db5a52b50a010e831c9159d3fec7.tar.xz
Supply a C interface to the "LinkModules" method.
Patch by Andrew Wilkins! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@156469 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Linker')
-rw-r--r--lib/Linker/LinkModules.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/Linker/LinkModules.cpp b/lib/Linker/LinkModules.cpp
index 630289b2bd..7293f3d0e8 100644
--- a/lib/Linker/LinkModules.cpp
+++ b/lib/Linker/LinkModules.cpp
@@ -25,6 +25,7 @@
#include "llvm/Support/raw_ostream.h"
#include "llvm/Transforms/Utils/Cloning.h"
#include "llvm/Transforms/Utils/ValueMapper.h"
+#include "llvm-c/Linker.h"
#include <cctype>
using namespace llvm;
@@ -1335,3 +1336,17 @@ bool Linker::LinkModules(Module *Dest, Module *Src, unsigned Mode,
return false;
}
+
+//===----------------------------------------------------------------------===//
+// C API.
+//===----------------------------------------------------------------------===//
+
+LLVMBool LLVMLinkModules(LLVMModuleRef Dest, LLVMModuleRef Src,
+ LLVMLinkerMode Mode, char **OutMessages) {
+ std::string Messages;
+ LLVMBool Result = Linker::LinkModules(unwrap(Dest), unwrap(Src),
+ Mode, OutMessages? &Messages : 0);
+ if (OutMessages)
+ *OutMessages = strdup(Messages.c_str());
+ return Result;
+}