summaryrefslogtreecommitdiffstats
path: root/lib/AST/StmtViz.cpp
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-08-23 08:52:09 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-08-23 08:52:09 +0000
commit68eaf00dec2de004ca4dceef2664add43d454069 (patch)
tree56970082a30338cdae411cd2c166e157f49022c7 /lib/AST/StmtViz.cpp
parent95190d00d54a493d9030908599feb073a7bb1d93 (diff)
cerr -> errs.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@79844 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/StmtViz.cpp')
-rw-r--r--lib/AST/StmtViz.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/AST/StmtViz.cpp b/lib/AST/StmtViz.cpp
index 96b5218ba2..5368ffb8fa 100644
--- a/lib/AST/StmtViz.cpp
+++ b/lib/AST/StmtViz.cpp
@@ -23,8 +23,8 @@ void Stmt::viewAST() const {
#ifndef NDEBUG
llvm::ViewGraph(this,"AST");
#else
- llvm::cerr << "Stmt::viewAST is only available in debug builds on "
- << "systems with Graphviz or gv!\n";
+ llvm::errs() << "Stmt::viewAST is only available in debug builds on "
+ << "systems with Graphviz or gv!\n";
#endif
}