summaryrefslogtreecommitdiffstats
path: root/llvm/tools/llvm-db/Commands.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-07-15 16:35:29 +0000
committerDan Gohman <gohman@apple.com>2009-07-15 16:35:29 +0000
commitd8db3760716c395f3211ad6b2e37dbb279809378 (patch)
tree310782dc48f8ef29c555690b23b249856937052a /llvm/tools/llvm-db/Commands.cpp
parentc1dd25da3102264f658017eeffdd61626231c3ec (diff)
downloadbcm5719-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.cpp2
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!";
}
OpenPOWER on IntegriCloud