summaryrefslogtreecommitdiff
path: root/lib/Linker
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2013-04-22 22:47:22 +0000
committerEric Christopher <echristo@gmail.com>2013-04-22 22:47:22 +0000
commit3e39731e88f2d4f597cebc74388fd6650ca4f604 (patch)
treec2ad976c0ec348e36d363f5e02f02bc53326fa56 /lib/Linker
parentd50dc20f06d9cf95562899020f773cd9f8309786 (diff)
downloadllvm-3e39731e88f2d4f597cebc74388fd6650ca4f604.tar.gz
llvm-3e39731e88f2d4f597cebc74388fd6650ca4f604.tar.bz2
llvm-3e39731e88f2d4f597cebc74388fd6650ca4f604.tar.xz
Move C++ code out of the C headers and into either C++ headers
or the C++ files themselves. This enables people to use just a C compiler to interoperate with LLVM. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@180063 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Linker')
-rw-r--r--lib/Linker/LinkModules.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Linker/LinkModules.cpp b/lib/Linker/LinkModules.cpp
index 74cbdadd61..d3526a6901 100644
--- a/lib/Linker/LinkModules.cpp
+++ b/lib/Linker/LinkModules.cpp
@@ -12,6 +12,7 @@
//===----------------------------------------------------------------------===//
#include "llvm/Linker.h"
+#include "llvm/Wrap.h"
#include "llvm-c/Linker.h"
#include "llvm/ADT/DenseSet.h"
#include "llvm/ADT/Optional.h"