From e8a81da98d5b7373734f0702493fe22883c3e0e2 Mon Sep 17 00:00:00 2001 From: Tobias Grosser Date: Mon, 30 Nov 2009 11:55:24 +0000 Subject: [PATCH] Remove ":" after BB name in -view-cfg-only git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@90129 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Analysis/CFGPrinter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/Analysis/CFGPrinter.h b/include/llvm/Analysis/CFGPrinter.h index 440d18267da..238d92e4c24 100644 --- a/include/llvm/Analysis/CFGPrinter.h +++ b/include/llvm/Analysis/CFGPrinter.h @@ -32,7 +32,7 @@ struct DOTGraphTraits : public DefaultDOTGraphTraits { const Function *Graph, bool ShortNames) { if (ShortNames && !Node->getName().empty()) - return Node->getNameStr() + ":"; + return Node->getNameStr(); std::string Str; raw_string_ostream OS(Str);