aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-11-14 00:32:34 +0000
committerDan Gohman <gohman@apple.com>2008-11-14 00:32:34 +0000
commit90c5201dd1933d643f1e04503c21ad90c25738b4 (patch)
treea66737064dd99d9d61aaa55c69629ad0fd200f38 /lib
parent505a551dab05029d2c7b5dc65a879d35e03e17c1 (diff)
downloadexternal_llvm-90c5201dd1933d643f1e04503c21ad90c25738b4.zip
external_llvm-90c5201dd1933d643f1e04503c21ad90c25738b4.tar.gz
external_llvm-90c5201dd1933d643f1e04503c21ad90c25738b4.tar.bz2
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
Diffstat (limited to 'lib')
-rw-r--r--lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
index 66ada59..758b8f2 100644
--- a/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
+++ b/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
@@ -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();
}