Move C++ code out of the C headers and into either C++ headers
authorEric Christopher <echristo@gmail.com>
Mon, 22 Apr 2013 22:47:22 +0000 (22:47 +0000)
committerEric Christopher <echristo@gmail.com>
Mon, 22 Apr 2013 22:47:22 +0000 (22:47 +0000)
commit3e39731e88f2d4f597cebc74388fd6650ca4f604
treec2ad976c0ec348e36d363f5e02f02bc53326fa56
parentd50dc20f06d9cf95562899020f773cd9f8309786
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
27 files changed:
include/llvm-c/Core.h
include/llvm-c/ExecutionEngine.h
include/llvm-c/Object.h
include/llvm-c/Target.h
include/llvm-c/TargetMachine.h
include/llvm-c/Transforms/PassManagerBuilder.h
include/llvm/Target/TargetMachine.h
include/llvm/Wrap.h [new file with mode: 0644]
lib/Analysis/Analysis.cpp
lib/Analysis/IPA/IPA.cpp
lib/Bitcode/Reader/BitReader.cpp
lib/Bitcode/Writer/BitWriter.cpp
lib/CodeGen/CodeGen.cpp
lib/ExecutionEngine/ExecutionEngineBindings.cpp
lib/IR/Core.cpp
lib/Linker/LinkModules.cpp
lib/Object/Object.cpp
lib/Target/Target.cpp
lib/Target/TargetMachineC.cpp
lib/Transforms/IPO/IPO.cpp
lib/Transforms/IPO/PassManagerBuilder.cpp
lib/Transforms/InstCombine/InstructionCombining.cpp
lib/Transforms/Instrumentation/Instrumentation.cpp
lib/Transforms/ObjCARC/ObjCARC.cpp
lib/Transforms/Scalar/Scalar.cpp
lib/Transforms/Utils/Utils.cpp
lib/Transforms/Vectorize/Vectorize.cpp