@@ -914,20 +914,13 @@ class PrecompilePreambleConsumer : public PCHGenerator {
914
914
unsigned &Hash;
915
915
std::vector<Decl *> TopLevelDecls;
916
916
PrecompilePreambleAction *Action;
917
- raw_ostream *Out;
918
- SmallVectorImpl<char > *SerializedASTBuffer;
919
917
920
918
public:
921
919
PrecompilePreambleConsumer (ASTUnit &Unit, PrecompilePreambleAction *Action,
922
920
const Preprocessor &PP, StringRef isysroot,
923
921
raw_ostream *Out)
924
- : PCHGenerator(PP, " " , nullptr , isysroot, /* AllowASTWithErrors=*/ true ),
925
- Unit (Unit), Hash(Unit.getCurrentTopLevelHashValue()), Action(Action),
926
- Out(Out) {
927
- RegisterSerializationFinishedCallback (
928
- [&](SmallVectorImpl<char > *Buf){
929
- SerializedASTBuffer = Buf;
930
- });
922
+ : PCHGenerator(PP, " " , nullptr , isysroot, Out, /* AllowASTWithErrors=*/ true ),
923
+ Unit (Unit), Hash(Unit.getCurrentTopLevelHashValue()), Action(Action) {
931
924
Hash = 0 ;
932
925
}
933
926
@@ -948,13 +941,6 @@ class PrecompilePreambleConsumer : public PCHGenerator {
948
941
void HandleTranslationUnit (ASTContext &Ctx) override {
949
942
PCHGenerator::HandleTranslationUnit (Ctx);
950
943
if (hasEmittedPCH ()) {
951
- // Write the generated bitstream to "Out".
952
- Out->write ((char *)&SerializedASTBuffer->front (),
953
- SerializedASTBuffer->size ());
954
- // Make sure it hits disk now.
955
- Out->flush ();
956
- SerializedASTBuffer->clear ();
957
-
958
944
// Translate the top-level declarations we captured during
959
945
// parsing into declaration IDs in the precompiled
960
946
// preamble. This will allow us to deserialize those top-level
0 commit comments