Check in the correct version of the patch in r59279.

llvm-svn: 59280
This commit is contained in:
Dan Gohman 2008-11-14 00:32:34 +00:00
parent 8f973f157d
commit 1a21ab6925
1 changed files with 1 additions and 1 deletions

View File

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