Fix a copy+pasto in a comment.

llvm-svn: 86852
This commit is contained in:
Dan Gohman 2009-11-11 18:14:02 +00:00
parent 4631d78a3b
commit 574137b4c0

View File

@ -72,7 +72,7 @@ struct DOTGraphTraits<const Function*> : public DefaultDOTGraphTraits {
if (BI->isConditional())
return (I == succ_begin(Node)) ? "T" : "F";
// Label source of conditional branches with "T" or "F"
// Label source of switch edges with the associated value.
if (const SwitchInst *SI = dyn_cast<SwitchInst>(Node->getTerminator())) {
unsigned SuccNo = I.getSuccessorIndex();