add a method

llvm-svn: 23575
This commit is contained in:
Chris Lattner 2005-10-01 00:17:07 +00:00
parent d3850457a1
commit fda6944c5b
2 changed files with 11 additions and 0 deletions

View File

@ -52,6 +52,12 @@ struct DefaultDOTGraphTraits {
return "";
}
/// hasNodeAddressLabel - If this method returns true, the address of the node
/// is added to the label of the node.
static bool hasNodeAddressLabel(const void *Node, const void *Graph) {
return false;
}
/// If you want to specify custom node attributes, this is the place to do so
///
static std::string getNodeAttributes(const void *Node) { return ""; }

View File

@ -34,6 +34,11 @@ namespace llvm {
return true;
}
static bool hasNodeAddressLabel(const SDNode *Node,
const SelectionDAG *Graph) {
return true;
}
static std::string getNodeLabel(const SDNode *Node,
const SelectionDAG *Graph);
static std::string getNodeAttributes(const SDNode *N) {