From: Tobias Grosser Date: Mon, 30 Nov 2009 11:55:24 +0000 (+0000) Subject: Remove ":" after BB name in -view-cfg-only X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=e8a81da98d5b7373734f0702493fe22883c3e0e2;p=oota-llvm.git 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 --- 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);