diff options
author | Tobias Grosser <grosser@fim.uni-passau.de> | 2009-11-30 13:34:51 +0000 |
---|---|---|
committer | Tobias Grosser <grosser@fim.uni-passau.de> | 2009-11-30 13:34:51 +0000 |
commit | 9caf3801cad960277158f1985509abff375d5ae6 (patch) | |
tree | 3f0c3cef436770dcf1890a17753579d86b523a8f /llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp | |
parent | 0729c6e281e0c3c465fab65546d427064312024f (diff) | |
download | bcm5719-llvm-9caf3801cad960277158f1985509abff375d5ae6.tar.gz bcm5719-llvm-9caf3801cad960277158f1985509abff375d5ae6.zip |
Fix last DOTGraphTraits problems in CompilationGraph.
llvm-svn: 90136
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 b4fe80caff6..c5adc5000db 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp @@ -132,7 +132,7 @@ namespace llvm { std::string DOTGraphTraits<SelectionDAG*>::getNodeLabel(const SDNode *Node, const SelectionDAG *G) { - DOTGraphTraits<SelectionDAG*>::getSimpleNodeLabel (Node, G); + return DOTGraphTraits<SelectionDAG*>::getSimpleNodeLabel (Node, G); } |