Reorganize the C API headers to improve build times.
authorEric Christopher <echristo@gmail.com>
Fri, 18 Dec 2015 01:46:52 +0000 (01:46 +0000)
committerEric Christopher <echristo@gmail.com>
Fri, 18 Dec 2015 01:46:52 +0000 (01:46 +0000)
commitcca8dbee4ea6ee37ef32e1794008d4d15bbd566b
tree6b53c3ca6e510d5de79109d55112e7762333ca81
parentce00641ac5f4ca2a073b732a75169037a2d9bef0
Reorganize the C API headers to improve build times.

Type specific declarations have been moved to Type.h and error handling
routines have been moved to ErrorHandling.h. Both are included in Core.h
so nothing should change for projects directly including the headers,
but transitive dependencies may be affected.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@255965 91177308-0d34-0410-b5e6-96231b3b80d8
39 files changed:
bindings/go/llvm/analysis.go
bindings/go/llvm/bitreader.go
bindings/go/llvm/executionengine.go
bindings/go/llvm/linker.go
bindings/go/llvm/target.go
docs/ReleaseNotes.rst
include/llvm-c/Analysis.h
include/llvm-c/BitReader.h
include/llvm-c/BitWriter.h
include/llvm-c/Core.h
include/llvm-c/ErrorHandling.h [new file with mode: 0644]
include/llvm-c/ExecutionEngine.h
include/llvm-c/IRReader.h
include/llvm-c/Initialization.h
include/llvm-c/Linker.h
include/llvm-c/Object.h
include/llvm-c/Support.h
include/llvm-c/Target.h
include/llvm-c/TargetMachine.h
include/llvm-c/Transforms/IPO.h
include/llvm-c/Transforms/PassManagerBuilder.h
include/llvm-c/Transforms/Scalar.h
include/llvm-c/Transforms/Vectorize.h
include/llvm-c/Types.h [new file with mode: 0644]
include/llvm/IR/DiagnosticInfo.h
include/llvm/IR/LLVMContext.h
include/llvm/IR/Type.h
include/llvm/IR/Use.h
include/llvm/IR/Value.h
include/llvm/PassRegistry.h
include/llvm/Support/CBindingWrapping.h
include/llvm/Support/MemoryBuffer.h
lib/Bitcode/Reader/BitReader.cpp
lib/Support/ErrorHandling.cpp
lib/Support/PrettyStackTrace.cpp
tools/llvm-c-test/object.c
unittests/ExecutionEngine/Orc/OrcCAPITest.cpp
unittests/IR/ConstantsTest.cpp
unittests/Linker/LinkModulesTest.cpp