diff options
author | Evan Cheng <evan.cheng@apple.com> | 2009-11-11 19:05:52 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2009-11-11 19:05:52 +0000 |
commit | 77e4751011da2d6afa930ab91f7baee39e7c7e89 (patch) | |
tree | 7cab1c5e38891c133a7fc290ae479d5826395018 /include | |
parent | f4997e87e3131a5609b54b18c6d94833827e9dce (diff) |
Add TargetLowering::isLegalICmpImmediate. It tells LSR what immediate can be folded into target icmp instructions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@86858 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Target/TargetLowering.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/llvm/Target/TargetLowering.h b/include/llvm/Target/TargetLowering.h index 31a698b7e5..38db7c147b 100644 --- a/include/llvm/Target/TargetLowering.h +++ b/include/llvm/Target/TargetLowering.h @@ -1514,6 +1514,14 @@ public: return false; } + /// isLegalICmpImmediate - Return true if the specified immediate is legal + /// icmp immediate, that is the target has icmp instructions which can compare + /// a register against the immediate without having to materialize the + /// immediate into a register. + virtual bool isLegalICmpImmediate(uint64_t Imm) const { + return true; + } + //===--------------------------------------------------------------------===// // Div utility functions // |