mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-20 14:29:27 +00:00
add a method
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23575 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
22f6212e9f
commit
37345fe3cd
@ -52,6 +52,12 @@ struct DefaultDOTGraphTraits {
|
|||||||
return "";
|
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
|
/// If you want to specify custom node attributes, this is the place to do so
|
||||||
///
|
///
|
||||||
static std::string getNodeAttributes(const void *Node) { return ""; }
|
static std::string getNodeAttributes(const void *Node) { return ""; }
|
||||||
|
@ -34,6 +34,11 @@ namespace llvm {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static bool hasNodeAddressLabel(const SDNode *Node,
|
||||||
|
const SelectionDAG *Graph) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
static std::string getNodeLabel(const SDNode *Node,
|
static std::string getNodeLabel(const SDNode *Node,
|
||||||
const SelectionDAG *Graph);
|
const SelectionDAG *Graph);
|
||||||
static std::string getNodeAttributes(const SDNode *N) {
|
static std::string getNodeAttributes(const SDNode *N) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user