diff options
author | Teresa Johnson <tejohnson@google.com> | 2016-11-11 05:35:12 +0000 |
---|---|---|
committer | Teresa Johnson <tejohnson@google.com> | 2016-11-11 05:35:12 +0000 |
commit | ffc4e2420fd0ffe4444329f21420ee0c39f273a1 (patch) | |
tree | dfa05b02a32835fddeeb5720f586349e5ac2af7c /clang/lib/CodeGen/CodeGenAction.cpp | |
parent | ad17679abdeb430af6bbb6778e7f09c9b4751695 (diff) | |
download | bcm5719-llvm-ffc4e2420fd0ffe4444329f21420ee0c39f273a1.tar.gz bcm5719-llvm-ffc4e2420fd0ffe4444329f21420ee0c39f273a1.zip |
Mirror the llvm changes that split Bitcode/ReaderWriter.h
The change in D26502 splits ReaderWriter.h, which contains the APIs
into both the BitReader and BitWriter libraries, into BitcodeReader.h
and BitcodeWriter.h.
Change clang uses to the appropriate split header(s).
llvm-svn: 286567
Diffstat (limited to 'clang/lib/CodeGen/CodeGenAction.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenAction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenAction.cpp b/clang/lib/CodeGen/CodeGenAction.cpp index c63e95b6ecb..8ffe9d4b5e4 100644 --- a/clang/lib/CodeGen/CodeGenAction.cpp +++ b/clang/lib/CodeGen/CodeGenAction.cpp @@ -21,7 +21,7 @@ #include "clang/Frontend/CompilerInstance.h" #include "clang/Frontend/FrontendDiagnostic.h" #include "clang/Lex/Preprocessor.h" -#include "llvm/Bitcode/ReaderWriter.h" +#include "llvm/Bitcode/BitcodeReader.h" #include "llvm/IR/DebugInfo.h" #include "llvm/IR/DiagnosticInfo.h" #include "llvm/IR/DiagnosticPrinter.h" |