aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/CFGPrinter.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-10-22 16:22:42 +0000
committerChris Lattner <sabre@nondot.org>2003-10-22 16:22:42 +0000
commita75b3ef9a8b1c88a362eed65f7527d0dc1e54b54 (patch)
tree7c2d438390819ffa3379cfc52f4ef13f5d61aef6 /lib/Analysis/CFGPrinter.cpp
parent002362c837ecf2e68008789a42c9634bb951491f (diff)
If the basic block has no name, make sure to print the % number of it
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9375 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/CFGPrinter.cpp')
-rw-r--r--lib/Analysis/CFGPrinter.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/Analysis/CFGPrinter.cpp b/lib/Analysis/CFGPrinter.cpp
index bb2912b060..4d6819d4fa 100644
--- a/lib/Analysis/CFGPrinter.cpp
+++ b/lib/Analysis/CFGPrinter.cpp
@@ -21,6 +21,7 @@
#include "llvm/Pass.h"
#include "llvm/Function.h"
#include "llvm/iTerminators.h"
+#include "llvm/Assembly/Writer.h"
#include "llvm/Support/CFG.h"
#include <sstream>
#include <fstream>
@@ -39,9 +40,14 @@ struct DOTGraphTraits<const Function*> : public DefaultDOTGraphTraits {
static std::string getNodeLabel(const BasicBlock *Node,
const Function *Graph) {
- if (CFGOnly) return Node->getName() + ":";
+ if (CFGOnly && !Node->getName().empty()) return Node->getName() + ":";
std::ostringstream Out;
+ if (CFGOnly) {
+ WriteAsOperand(Out, Node, false, true);
+ return Out.str();
+ }
+
Out << *Node;
std::string OutStr = Out.str();
if (OutStr[0] == '\n') OutStr.erase(OutStr.begin());