commit | 4fdc101bb5a565923ebd4aef7732cdbc0a586988 | [log] [tgz] |
---|---|---|
author | Dan Gohman <gohman@apple.com> | Wed Aug 04 01:39:08 2010 +0000 |
committer | Dan Gohman <gohman@apple.com> | Wed Aug 04 01:39:08 2010 +0000 |
tree | 98f430708144f58c8aa367b68883888aa4067c8b | |
parent | 70e8b173eeb6c692f46d47e87debb1b74b735112 [diff] [blame] |
Eliminate unnecessary empty string literals. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110183 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp index 6cae804..8313de5 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
@@ -199,7 +199,7 @@ #else errs() << "SelectionDAG::getGraphAttrs is only available in debug builds" << " on systems with Graphviz or gv!\n"; - return std::string(""); + return std::string(); #endif }