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 | 65f57c233cd4499e2e8b52a503201e64edfd6a9e (patch) | |
tree | af96a9f73e7b0060483af26b6f3e1a6210677b67 /tools/llvm-db/Commands.cpp | |
parent | 6ca5f9360ce657c1ab382605536751d33c1d138a (diff) |
Use errs() instead of std::cerr.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75791 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-db/Commands.cpp')
-rw-r--r-- | tools/llvm-db/Commands.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/llvm-db/Commands.cpp b/tools/llvm-db/Commands.cpp index 4c916f4278..bd741a5089 100644 --- a/tools/llvm-db/Commands.cpp +++ b/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!"; } |