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 | 1a21ab69250b7566947296576404bc94e4fbd178 (patch) | |
tree | 5234aab726fc7190fed5f617e5ad0bfa9a73a100 /llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp | |
parent | 8f973f157dc313f3bd732f109c10e6a8768181b1 (diff) | |
download | bcm5719-llvm-1a21ab69250b7566947296576404bc94e4fbd178.tar.gz bcm5719-llvm-1a21ab69250b7566947296576404bc94e4fbd178.zip |
Check in the correct version of the patch in r59279.
llvm-svn: 59280
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp index 66ada59acdb..758b8f263b3 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp +++ b/llvm/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(); } |