forked from OSchip/llvm-project
Fix up comment from r280442, noticed by Justin.
llvm-svn: 280508
This commit is contained in:
parent
951cfb6aae
commit
26c43c879c
|
@ -142,9 +142,8 @@ struct DOTGraphTraits<const Function*> : public DefaultDOTGraphTraits {
|
||||||
if (!Weight)
|
if (!Weight)
|
||||||
return "";
|
return "";
|
||||||
|
|
||||||
// Append a 'W' to indicate that these are weights rather than actual
|
// Prepend a 'W' to indicate that this is a weight rather than the actual
|
||||||
// profile
|
// profile count (due to scaling).
|
||||||
// count (due to scaling).
|
|
||||||
Twine Attrs = "label=\"W:" + Twine(Weight->getZExtValue()) + "\"";
|
Twine Attrs = "label=\"W:" + Twine(Weight->getZExtValue()) + "\"";
|
||||||
return Attrs.str();
|
return Attrs.str();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue