diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-11-25 10:27:48 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-11-25 10:27:48 +0000 |
commit | 33f57f88f01b791882f8c68ac89fe2fa5e12a393 (patch) | |
tree | 045ec689a2aef3b11666c29f8c24edee8e7c3917 /lib/Frontend/FrontendActions.cpp | |
parent | eb01ac82901a9fd8f64d387395af42165556b767 (diff) |
Fix some uses of fprintf/stderr without a prototype.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@89858 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/FrontendActions.cpp')
-rw-r--r-- | lib/Frontend/FrontendActions.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Frontend/FrontendActions.cpp b/lib/Frontend/FrontendActions.cpp index 7a7537bce4..3a2f570a7a 100644 --- a/lib/Frontend/FrontendActions.cpp +++ b/lib/Frontend/FrontendActions.cpp @@ -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)); } |