diff options
author | Chris Lattner <sabre@nondot.org> | 2005-10-01 00:17:07 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-10-01 00:17:07 +0000 |
commit | fda6944c5bf99ff6d157b1590f3976bac9c5593d (patch) | |
tree | 1232f027b1df590add6165938076892219d198bd /llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp | |
parent | d3850457a11058907949d43747117501fa449e59 (diff) | |
download | bcm5719-llvm-fda6944c5bf99ff6d157b1590f3976bac9c5593d.tar.gz bcm5719-llvm-fda6944c5bf99ff6d157b1590f3976bac9c5593d.zip |
add a method
llvm-svn: 23575
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp index d69004a557f..2c2bc214463 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp +++ b/llvm/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); |