diff options
author | Eric Christopher <echristo@gmail.com> | 2015-12-18 01:46:52 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2015-12-18 01:46:52 +0000 |
commit | a6b96004b57375ed60a8d56b979dc4a900be6c9e (patch) | |
tree | 1fdf2b063425a8da01c3204142f185493b52aa0e /llvm/lib | |
parent | 51b9de4c7cd305927727455be24a496a867b0b23 (diff) | |
download | bcm5719-llvm-a6b96004b57375ed60a8d56b979dc4a900be6c9e.tar.gz bcm5719-llvm-a6b96004b57375ed60a8d56b979dc4a900be6c9e.zip |
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.
llvm-svn: 255965
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Bitcode/Reader/BitReader.cpp | 1 | ||||
-rw-r--r-- | llvm/lib/Support/ErrorHandling.cpp | 2 | ||||
-rw-r--r-- | llvm/lib/Support/PrettyStackTrace.cpp | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/llvm/lib/Bitcode/Reader/BitReader.cpp b/llvm/lib/Bitcode/Reader/BitReader.cpp index 5ac068645c8..7ace802ba21 100644 --- a/llvm/lib/Bitcode/Reader/BitReader.cpp +++ b/llvm/lib/Bitcode/Reader/BitReader.cpp @@ -8,6 +8,7 @@ //===----------------------------------------------------------------------===// #include "llvm-c/BitReader.h" +#include "llvm-c/Core.h" #include "llvm/Bitcode/ReaderWriter.h" #include "llvm/IR/DiagnosticPrinter.h" #include "llvm/IR/LLVMContext.h" diff --git a/llvm/lib/Support/ErrorHandling.cpp b/llvm/lib/Support/ErrorHandling.cpp index a25e21ae043..2808bd34af0 100644 --- a/llvm/lib/Support/ErrorHandling.cpp +++ b/llvm/lib/Support/ErrorHandling.cpp @@ -13,7 +13,7 @@ //===----------------------------------------------------------------------===// #include "llvm/Support/ErrorHandling.h" -#include "llvm-c/Core.h" +#include "llvm-c/ErrorHandling.h" #include "llvm/ADT/SmallVector.h" #include "llvm/ADT/Twine.h" #include "llvm/Config/config.h" diff --git a/llvm/lib/Support/PrettyStackTrace.cpp b/llvm/lib/Support/PrettyStackTrace.cpp index d6782a70e1a..05b3e31644b 100644 --- a/llvm/lib/Support/PrettyStackTrace.cpp +++ b/llvm/lib/Support/PrettyStackTrace.cpp @@ -13,7 +13,7 @@ //===----------------------------------------------------------------------===// #include "llvm/Support/PrettyStackTrace.h" -#include "llvm-c/Core.h" +#include "llvm-c/ErrorHandling.h" #include "llvm/ADT/SmallString.h" #include "llvm/Config/config.h" // Get autoconf configuration settings #include "llvm/Support/Compiler.h" |