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 | 6af02635a705dd6a20877a988a0ad77a769dd680 (patch) | |
tree | 55391debafe95e411886803c4b56b513aab4dae8 /llvm/lib/Target/TargetLowering.cpp | |
parent | 2dd7e06d8eceb999b613777c4baee5776daa47bf (diff) | |
download | bcm5719-llvm-6af02635a705dd6a20877a988a0ad77a769dd680.tar.gz bcm5719-llvm-6af02635a705dd6a20877a988a0ad77a769dd680.zip |
Added a hook to print out names of target specific DAG nodes.
llvm-svn: 24877
Diffstat (limited to 'llvm/lib/Target/TargetLowering.cpp')
-rw-r--r-- | llvm/lib/Target/TargetLowering.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/lib/Target/TargetLowering.cpp b/llvm/lib/Target/TargetLowering.cpp index 415084e2f1a..8e9524ef1e3 100644 --- a/llvm/lib/Target/TargetLowering.cpp +++ b/llvm/lib/Target/TargetLowering.cpp @@ -122,3 +122,6 @@ void TargetLowering::computeRegisterProperties() { TransformToType[MVT::f64] = MVT::f64; } +const char *TargetLowering::getTargetNodeName(unsigned Opcode) const { + return NULL; +} |