Flush output after writing out the list of function names.

llvm-svn: 9138
This commit is contained in:
Brian Gaeke 2003-10-15 20:42:48 +00:00
parent be945ca24e
commit adbbfebfae
1 changed files with 1 additions and 0 deletions

View File

@ -170,4 +170,5 @@ void BugDriver::PrintFunctionList(const std::vector<Function*> &Funcs) {
if (i) std::cout << ", ";
std::cout << Funcs[i]->getName();
}
std::cout << std::flush;
}