Check in the correct version of the patch in r59279.
authorDan Gohman <gohman@apple.com>
Fri, 14 Nov 2008 00:32:34 +0000 (00:32 +0000)
committerDan Gohman <gohman@apple.com>
Fri, 14 Nov 2008 00:32:34 +0000 (00:32 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@59280 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp

index 66ada59acdbf61d42d900ea32ecb4db07df1ebc9..758b8f263b3a0a8c5f6d7f9c8da1ff2754b47696 100644 (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();
   }