diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2009-10-25 05:20:17 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2009-10-25 05:20:17 +0000 |
commit | 4a134afaef984c403f6d6b1da4d301666d899b92 (patch) | |
tree | 181f785013801636933b7905fb391d7d8f98a9e3 /include/llvm/Instructions.h | |
parent | 44df023d5f56e301d6280df20e36e68b1c4a761e (diff) | |
download | external_llvm-4a134afaef984c403f6d6b1da4d301666d899b92.zip external_llvm-4a134afaef984c403f6d6b1da4d301666d899b92.tar.gz external_llvm-4a134afaef984c403f6d6b1da4d301666d899b92.tar.bz2 |
Remove ICmpInst::isSignedPredicate which was a reimplementation
CmpInst::isSigned.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85037 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Instructions.h')
-rw-r--r-- | include/llvm/Instructions.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/llvm/Instructions.h b/include/llvm/Instructions.h index 43f0929..1e2c93f 100644 --- a/include/llvm/Instructions.h +++ b/include/llvm/Instructions.h @@ -693,14 +693,6 @@ public: return !isEquality(P); } - /// @returns true if the predicate of this ICmpInst is signed, false otherwise - /// @brief Determine if this instruction's predicate is signed. - bool isSignedPredicate() const { return isSignedPredicate(getPredicate()); } - - /// @returns true if the predicate provided is signed, false otherwise - /// @brief Determine if the predicate is signed. - static bool isSignedPredicate(Predicate pred); - /// Initialize a set of values that all satisfy the predicate with C. /// @brief Make a ConstantRange for a relation with a constant value. static ConstantRange makeConstantRange(Predicate pred, const APInt &C); |