[llvm-commits] CVS: llvm/lib/Target/TargetLowering.cpp
Evan Cheng
evan.cheng at apple.com
Wed Dec 21 15:05:51 PST 2005
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;
+}
More information about the llvm-commits
mailing list