summaryrefslogtreecommitdiff
path: root/lib/Frontend/TestModuleFileExtension.cpp
diff options
context:
space:
mode:
authorFrancis Visoiu Mistrih <francisvm@yahoo.com>2019-07-03 22:40:07 +0000
committerFrancis Visoiu Mistrih <francisvm@yahoo.com>2019-07-03 22:40:07 +0000
commit711c0bdbd656146f1727cbc39c8278adcf6a5a98 (patch)
treee729263e5e5a768207a144e08a7a65d6cfc93959 /lib/Frontend/TestModuleFileExtension.cpp
parentd890a6cf4942a6798559d085b598741565791f1f (diff)
downloadclang-711c0bdbd656146f1727cbc39c8278adcf6a5a98.tar.gz
[Bitcode] Move Bitstream to a separate library
This moves Bitcode/Bitstream*, Bitcode/BitCodes.h to Bitstream/. This is needed to avoid a circular dependency when using the bitstream code for parsing optimization remarks. Since Bitcode uses Core for the IR part: libLLVMRemarks -> Bitcode -> Core and Core uses libLLVMRemarks to generate remarks (see IR/RemarkStreamer.cpp): Core -> libLLVMRemarks we need to separate the Bitstream and Bitcode part. For clang-doc, it seems that it doesn't need the whole bitcode layer, so I updated the CMake to only use the bitstream part. Differential Revision: https://reviews.llvm.org/D63899 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@365091 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/TestModuleFileExtension.cpp')
-rw-r--r--lib/Frontend/TestModuleFileExtension.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Frontend/TestModuleFileExtension.cpp b/lib/Frontend/TestModuleFileExtension.cpp
index f8ed341934..354aa7f5cd 100644
--- a/lib/Frontend/TestModuleFileExtension.cpp
+++ b/lib/Frontend/TestModuleFileExtension.cpp
@@ -9,7 +9,7 @@
#include "clang/Frontend/FrontendDiagnostic.h"
#include "clang/Serialization/ASTReader.h"
#include "llvm/ADT/Hashing.h"
-#include "llvm/Bitcode/BitstreamWriter.h"
+#include "llvm/Bitstream/BitstreamWriter.h"
#include "llvm/Support/raw_ostream.h"
#include <cstdio>
using namespace clang;