diff options
author | Dan Gohman <gohman@apple.com> | 2008-11-14 00:32:34 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-11-14 00:32:34 +0000 |
commit | 90c5201dd1933d643f1e04503c21ad90c25738b4 (patch) | |
tree | a66737064dd99d9d61aaa55c69629ad0fd200f38 /lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp | |
parent | 505a551dab05029d2c7b5dc65a879d35e03e17c1 (diff) | |
download | external_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/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp | 2 |
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(); } |