diff options
author | dim <dim@FreeBSD.org> | 2015-02-25 18:50:24 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2015-02-25 18:50:24 +0000 |
commit | 05cbe3bcbc92a96409200151d08e791a8d83fd76 (patch) | |
tree | b783716227b7ac689d5e5af7146963eb3749106e /contrib/llvm/lib/Linker | |
parent | 77928dd8d2eecaaa4ba3e4124a3fa0d46c125b39 (diff) | |
download | FreeBSD-src-05cbe3bcbc92a96409200151d08e791a8d83fd76.zip FreeBSD-src-05cbe3bcbc92a96409200151d08e791a8d83fd76.tar.gz |
Merge llvm 3.6.0 final from ^/vendor/llvm/dist, merge clang 3.6.0 final
from ^/vendor/clang/dist, and resolve conflicts.
Diffstat (limited to 'contrib/llvm/lib/Linker')
-rw-r--r-- | contrib/llvm/lib/Linker/LinkModules.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/llvm/lib/Linker/LinkModules.cpp b/contrib/llvm/lib/Linker/LinkModules.cpp index 767d465..d5170ad 100644 --- a/contrib/llvm/lib/Linker/LinkModules.cpp +++ b/contrib/llvm/lib/Linker/LinkModules.cpp @@ -1749,7 +1749,7 @@ bool Linker::LinkModules(Module *Dest, Module *Src) { //===----------------------------------------------------------------------===// LLVMBool LLVMLinkModules(LLVMModuleRef Dest, LLVMModuleRef Src, - unsigned Unused, char **OutMessages) { + LLVMLinkerMode Mode, char **OutMessages) { Module *D = unwrap(Dest); std::string Message; raw_string_ostream Stream(Message); |