From: Timur Iskhodzhanov Date: Thu, 20 Mar 2014 13:42:14 +0000 (+0000) Subject: Flust stdout after each vftable dumped to simplify debugging X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=97cc0b47609995a3ac9dbc2c8a0cfe998440c69d;p=clang Flust stdout after each vftable dumped to simplify debugging git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@204341 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AST/VTableBuilder.cpp b/lib/AST/VTableBuilder.cpp index 4ddb3c8c95..0137234117 100644 --- a/lib/AST/VTableBuilder.cpp +++ b/lib/AST/VTableBuilder.cpp @@ -3103,6 +3103,8 @@ void VFTableBuilder::dumpLayout(raw_ostream &Out) { Out << '\n'; } } + + Out.flush(); } static bool setsIntersect(const llvm::SmallPtrSet &A, @@ -3359,6 +3361,8 @@ void MicrosoftVTableContext::dumpMethodLocations( } Out << '\n'; } + + Out.flush(); } const VirtualBaseInfo *MicrosoftVTableContext::computeVBTableRelatedInformation(