commit | 6af02635a705dd6a20877a988a0ad77a769dd680 | [log] [tgz] |
---|---|---|
author | Evan Cheng <evan.cheng@apple.com> | Tue Dec 20 06:22:03 2005 +0000 |
committer | Evan Cheng <evan.cheng@apple.com> | Tue Dec 20 06:22:03 2005 +0000 |
tree | 55391debafe95e411886803c4b56b513aab4dae8 | |
parent | 2dd7e06d8eceb999b613777c4baee5776daa47bf [diff] [blame] |
Added a hook to print out names of target specific DAG nodes. llvm-svn: 24877
diff --git a/llvm/lib/Target/TargetLowering.cpp b/llvm/lib/Target/TargetLowering.cpp index 415084e..8e9524e 100644 --- a/llvm/lib/Target/TargetLowering.cpp +++ b/llvm/lib/Target/TargetLowering.cpp
@@ -122,3 +122,6 @@ TransformToType[MVT::f64] = MVT::f64; } +const char *TargetLowering::getTargetNodeName(unsigned Opcode) const { + return NULL; +}