Fix some uses of fprintf/stderr without a prototype.

llvm-svn: 89858
This commit is contained in:
Daniel Dunbar 2009-11-25 10:27:48 +00:00
parent ad2278d74c
commit 750246255d
1 changed files with 2 additions and 2 deletions

View File

@ -199,7 +199,7 @@ void DumpRawTokensAction::ExecuteAction() {
RawLex.LexFromRawLexer(RawTok);
while (RawTok.isNot(tok::eof)) {
PP.DumpToken(RawTok, true);
fprintf(stderr, "\n");
llvm::errs() << "\n";
RawLex.LexFromRawLexer(RawTok);
}
}
@ -212,7 +212,7 @@ void DumpTokensAction::ExecuteAction() {
do {
PP.Lex(Tok);
PP.DumpToken(Tok, true);
fprintf(stderr, "\n");
llvm::errs() << "\n";
} while (Tok.isNot(tok::eof));
}