summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/TargetLowering.cpp
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2005-12-21 23:05:39 +0000
committerEvan Cheng <evan.cheng@apple.com>2005-12-21 23:05:39 +0000
commit9cdc16c6d362533e7f368c4f8f78df0597fe2925 (patch)
tree2202e3e3f4d03cd26dc89619e106eaae1ad0d137 /llvm/lib/Target/TargetLowering.cpp
parent02767195bb688fa4d246bdaad93660656588e962 (diff)
downloadbcm5719-llvm-9cdc16c6d362533e7f368c4f8f78df0597fe2925.tar.gz
bcm5719-llvm-9cdc16c6d362533e7f368c4f8f78df0597fe2925.zip
* Fix a GlobalAddress lowering bug.
* Teach DAG combiner about X86ISD::SETCC by adding a TargetLowering hook. llvm-svn: 24921
Diffstat (limited to 'llvm/lib/Target/TargetLowering.cpp')
-rw-r--r--llvm/lib/Target/TargetLowering.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/lib/Target/TargetLowering.cpp b/llvm/lib/Target/TargetLowering.cpp
index 8e9524ef1e3..e46826e2fae 100644
--- a/llvm/lib/Target/TargetLowering.cpp
+++ b/llvm/lib/Target/TargetLowering.cpp
@@ -125,3 +125,8 @@ void TargetLowering::computeRegisterProperties() {
const char *TargetLowering::getTargetNodeName(unsigned Opcode) const {
return NULL;
}
+
+bool isMaskedValueZeroForTargetNode(const SDOperand &Op,
+ uint64_t Mask) const {
+ return false;
+}
OpenPOWER on IntegriCloud