commit | 3e39731e88f2d4f597cebc74388fd6650ca4f604 | [log] [tgz] |
---|---|---|
author | Eric Christopher <echristo@gmail.com> | Mon Apr 22 22:47:22 2013 +0000 |
committer | Eric Christopher <echristo@gmail.com> | Mon Apr 22 22:47:22 2013 +0000 |
tree | c2ad976c0ec348e36d363f5e02f02bc53326fa56 | |
parent | d50dc20f06d9cf95562899020f773cd9f8309786 [diff] [blame] |
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
diff --git a/lib/Transforms/Instrumentation/Instrumentation.cpp b/lib/Transforms/Instrumentation/Instrumentation.cpp index 8ba1025..d5207b7 100644 --- a/lib/Transforms/Instrumentation/Instrumentation.cpp +++ b/lib/Transforms/Instrumentation/Instrumentation.cpp
@@ -13,6 +13,7 @@ //===----------------------------------------------------------------------===// #include "llvm/InitializePasses.h" +#include "llvm/Wrap.h" #include "llvm-c/Initialization.h" using namespace llvm;