[ARM64] Remove unused function. NFCI.

llvm-svn: 321651
This commit is contained in:
Davide Italiano 2018-01-02 16:22:09 +00:00
parent cfe4a3616f
commit aae267d7f2
1 changed files with 0 additions and 13 deletions

View File

@ -76,19 +76,6 @@ static inline bool IsZero(uint64_t x) { return x == 0; }
static inline uint64_t NOT(uint64_t x) { return ~x; } static inline uint64_t NOT(uint64_t x) { return ~x; }
#if 0
// LSL_C()
// =======
static inline uint64_t
LSL_C (uint64_t x, integer shift, bool &carry_out)
{
assert (shift >= 0);
uint64_t result = x << shift;
carry_out = ((1ull << (64-1)) >> (shift - 1)) != 0;
return result;
}
#endif
// LSL() // LSL()
// ===== // =====