diff options
author | Evan Cheng <evan.cheng@apple.com> | 2005-12-21 23:14:54 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2005-12-21 23:14:54 +0000 |
commit | 1872908f3bcdb75f1462a93fd8f2bcca56727ee8 (patch) | |
tree | 1ed1cf68a13b60b2b8ee615a6564ce0a2313be61 /llvm/lib/Target/TargetLowering.cpp | |
parent | 9cdc16c6d362533e7f368c4f8f78df0597fe2925 (diff) | |
download | bcm5719-llvm-1872908f3bcdb75f1462a93fd8f2bcca56727ee8.tar.gz bcm5719-llvm-1872908f3bcdb75f1462a93fd8f2bcca56727ee8.zip |
Lefted out TargetLowering::
llvm-svn: 24922
Diffstat (limited to 'llvm/lib/Target/TargetLowering.cpp')
-rw-r--r-- | llvm/lib/Target/TargetLowering.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/TargetLowering.cpp b/llvm/lib/Target/TargetLowering.cpp index e46826e2fae..cffdc0e5c16 100644 --- a/llvm/lib/Target/TargetLowering.cpp +++ b/llvm/lib/Target/TargetLowering.cpp @@ -126,7 +126,7 @@ const char *TargetLowering::getTargetNodeName(unsigned Opcode) const { return NULL; } -bool isMaskedValueZeroForTargetNode(const SDOperand &Op, - uint64_t Mask) const { +bool TargetLowering::isMaskedValueZeroForTargetNode(const SDOperand &Op, + uint64_t Mask) const { return false; } |