diff options
author | Evan Cheng <evan.cheng@apple.com> | 2005-12-20 06:22:03 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2005-12-20 06:22:03 +0000 |
commit | 7226158d7e3986e55b58214a749aa4eabb3fb6d5 (patch) | |
tree | 03b4e5b249ef9db846734225c9048faf8d371697 /lib/CodeGen/SelectionDAG/TargetLowering.cpp | |
parent | dae87b65365a8a3dae8e41c2e836572388ec84ba (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.cpp | 3 |
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; +} |