aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/TargetLowering.cpp
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2005-12-20 06:22:03 +0000
committerEvan Cheng <evan.cheng@apple.com>2005-12-20 06:22:03 +0000
commit7226158d7e3986e55b58214a749aa4eabb3fb6d5 (patch)
tree03b4e5b249ef9db846734225c9048faf8d371697 /lib/CodeGen/SelectionDAG/TargetLowering.cpp
parentdae87b65365a8a3dae8e41c2e836572388ec84ba (diff)
Added a hook to print out names of target specific DAG nodes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24877 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/TargetLowering.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/TargetLowering.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/CodeGen/SelectionDAG/TargetLowering.cpp b/lib/CodeGen/SelectionDAG/TargetLowering.cpp
index 415084e2f1..8e9524ef1e 100644
--- a/lib/CodeGen/SelectionDAG/TargetLowering.cpp
+++ b/lib/CodeGen/SelectionDAG/TargetLowering.cpp
@@ -122,3 +122,6 @@ void TargetLowering::computeRegisterProperties() {
TransformToType[MVT::f64] = MVT::f64;
}
+const char *TargetLowering::getTargetNodeName(unsigned Opcode) const {
+ return NULL;
+}