Check in the correct version of the patch in r59279.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@59280 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman 2008-11-14 00:32:34 +00:00
parent 505a551dab
commit 90c5201dd1

View File

@ -462,7 +462,7 @@ std::string DOTGraphTraits<ScheduleDAG*>::getNodeLabel(const SUnit *SU,
} else {
std::string s;
raw_string_ostream oss(s);
SU->MI->print(oss);
SU->getInstr()->print(oss);
Op += oss.str();
}