Changes in directory llvm/lib/Target:

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

* Fix a GlobalAddress lowering bug.
* Teach DAG combiner about X86ISD::SETCC by adding a TargetLowering hook.


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

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


Index: llvm/lib/Target/TargetLowering.cpp
diff -u llvm/lib/Target/TargetLowering.cpp:1.16 
llvm/lib/Target/TargetLowering.cpp:1.17
--- llvm/lib/Target/TargetLowering.cpp:1.16     Tue Dec 20 00:22:03 2005
+++ llvm/lib/Target/TargetLowering.cpp  Wed Dec 21 17:05:39 2005
@@ -125,3 +125,8 @@
 const char *TargetLowering::getTargetNodeName(unsigned Opcode) const {
   return NULL;
 }
+
+bool isMaskedValueZeroForTargetNode(const SDOperand &Op,
+                                    uint64_t Mask) const {
+  return false;
+}



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to