From aae267d7f2ac74b1ea8e65008e8819556e0b0ef8 Mon Sep 17 00:00:00 2001 From: Davide Italiano Date: Tue, 2 Jan 2018 16:22:09 +0000 Subject: [PATCH] [ARM64] Remove unused function. NFCI. llvm-svn: 321651 --- .../Instruction/ARM64/EmulateInstructionARM64.cpp | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/lldb/source/Plugins/Instruction/ARM64/EmulateInstructionARM64.cpp b/lldb/source/Plugins/Instruction/ARM64/EmulateInstructionARM64.cpp index d882108c25f4..d2832656d906 100644 --- a/lldb/source/Plugins/Instruction/ARM64/EmulateInstructionARM64.cpp +++ b/lldb/source/Plugins/Instruction/ARM64/EmulateInstructionARM64.cpp @@ -76,19 +76,6 @@ static inline bool IsZero(uint64_t x) { return x == 0; } 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() // =====