aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-10-01 00:17:07 +0000
committerChris Lattner <sabre@nondot.org>2005-10-01 00:17:07 +0000
commit37345fe3cd2dd56c3711592a5af6c294c10c7aba (patch)
tree852900381fbf45e945eaad0d726f7ad6c6b93dc9 /lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
parent22f6212e9f1551c93a76f2ad8ea0e9688a3e3775 (diff)
add a method
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23575 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
index d69004a557..2c2bc21446 100644
--- a/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
+++ b/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
@@ -33,6 +33,11 @@ namespace llvm {
static bool renderGraphFromBottomUp() {
return true;
}
+
+ static bool hasNodeAddressLabel(const SDNode *Node,
+ const SelectionDAG *Graph) {
+ return true;
+ }
static std::string getNodeLabel(const SDNode *Node,
const SelectionDAG *Graph);