[llvm-commits] CVS: llvm/lib/Target/TargetLowering.cpp

Evan Cheng evan.cheng at apple.com
Mon Dec 19 22:22:16 PST 2005



Changes in directory llvm/lib/Target:

TargetLowering.cpp updated: 1.15 -> 1.16
---
Log message:

Added a hook to print out names of target specific DAG nodes.


---
Diffs of the changes:  (+3 -0)

 TargetLowering.cpp |    3 +++
 1 files changed, 3 insertions(+)


Index: llvm/lib/Target/TargetLowering.cpp
diff -u llvm/lib/Target/TargetLowering.cpp:1.15 llvm/lib/Target/TargetLowering.cpp:1.16
--- llvm/lib/Target/TargetLowering.cpp:1.15	Mon Nov 28 23:45:29 2005
+++ llvm/lib/Target/TargetLowering.cpp	Tue Dec 20 00:22:03 2005
@@ -122,3 +122,6 @@
   TransformToType[MVT::f64] = MVT::f64;
 }
 
+const char *TargetLowering::getTargetNodeName(unsigned Opcode) const {
+  return NULL;
+}






More information about the llvm-commits mailing list