diff options
author | Craig Topper <craig.topper@gmail.com> | 2017-04-19 23:57:51 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2017-04-19 23:57:51 +0000 |
commit | b3624e4f4561d7b8d0801e2d0c034049f5375283 (patch) | |
tree | 9bdeb98d57b4f2fe4bb2557a1c824271d7309f3e /llvm/lib | |
parent | 0e7f6fb6b418952e558b8b56ebd8655b133919ec (diff) | |
download | bcm5719-llvm-b3624e4f4561d7b8d0801e2d0c034049f5375283.tar.gz bcm5719-llvm-b3624e4f4561d7b8d0801e2d0c034049f5375283.zip |
[APInt] Implement operator==(uint64_t) similar to ugt/ult(uint64_t) to remove one of the out of line EqualsSlowCase methods.
llvm-svn: 300799
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Support/APInt.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/llvm/lib/Support/APInt.cpp b/llvm/lib/Support/APInt.cpp index ad964e2f3c8..805a912501d 100644 --- a/llvm/lib/Support/APInt.cpp +++ b/llvm/lib/Support/APInt.cpp @@ -364,14 +364,6 @@ bool APInt::EqualSlowCase(const APInt& RHS) const { return std::equal(pVal, pVal + getNumWords(), RHS.pVal); } -bool APInt::EqualSlowCase(uint64_t Val) const { - unsigned n = getActiveBits(); - if (n <= APINT_BITS_PER_WORD) - return pVal[0] == Val; - else - return false; -} - bool APInt::ult(const APInt& RHS) const { assert(BitWidth == RHS.BitWidth && "Bit widths must be same for comparison"); if (isSingleWord()) |