diff options
author | Dan Gohman <gohman@apple.com> | 2009-07-15 16:35:29 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-07-15 16:35:29 +0000 |
commit | d8db3760716c395f3211ad6b2e37dbb279809378 (patch) | |
tree | 310782dc48f8ef29c555690b23b249856937052a /llvm/tools/llvm-db/Commands.cpp | |
parent | c1dd25da3102264f658017eeffdd61626231c3ec (diff) | |
download | bcm5719-llvm-d8db3760716c395f3211ad6b2e37dbb279809378.tar.gz bcm5719-llvm-d8db3760716c395f3211ad6b2e37dbb279809378.zip |
Use errs() instead of std::cerr.
llvm-svn: 75791
Diffstat (limited to 'llvm/tools/llvm-db/Commands.cpp')
-rw-r--r-- | llvm/tools/llvm-db/Commands.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-db/Commands.cpp b/llvm/tools/llvm-db/Commands.cpp index 4c916f42780..bd741a5089d 100644 --- a/llvm/tools/llvm-db/Commands.cpp +++ b/llvm/tools/llvm-db/Commands.cpp @@ -500,7 +500,7 @@ void CLIDebugger::breakCommand(std::string &Options) { if (File == 0) throw "Unknown file to place breakpoint!"; - std::cerr << "Break: " << File->getFilename() << ":" << LineNo << "\n"; + errs() << "Break: " << File->getFilename() << ":" << LineNo << "\n"; throw "breakpoints not implemented yet!"; } |