diff options
author | Evan Cheng <evan.cheng@apple.com> | 2005-12-21 23:05:39 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2005-12-21 23:05:39 +0000 |
commit | 9cdc16c6d362533e7f368c4f8f78df0597fe2925 (patch) | |
tree | 2202e3e3f4d03cd26dc89619e106eaae1ad0d137 /llvm/lib/Target/TargetLowering.cpp | |
parent | 02767195bb688fa4d246bdaad93660656588e962 (diff) | |
download | bcm5719-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.cpp | 5 |
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; +} |