aboutsummaryrefslogtreecommitdiff
path: root/source/Plugins/Instruction
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2018-01-06 21:37:20 +0000
committerDimitry Andric <dim@FreeBSD.org>2018-01-06 21:37:20 +0000
commit4298ea0c0f4c4afb87fb28f496b3df781088b73c (patch)
tree6f0bacc58f7c9ae7df21e47f0af8898c5ea4a97c /source/Plugins/Instruction
parent160ee69dd7ae18978f4068116777639ea98dc951 (diff)
downloadsrc-4298ea0c0f4c4afb87fb28f496b3df781088b73c.tar.gz
src-4298ea0c0f4c4afb87fb28f496b3df781088b73c.zip
Vendor import of lldb release_60 branch r321788:vendor/lldb/lldb-release_60-r321788
Notes
Notes: svn path=/vendor/lldb/dist-release_60/; revision=327649 svn path=/vendor/lldb/lldb-release_60-r321788/; revision=327650; tag=vendor/lldb/lldb-release_60-r321788
Diffstat (limited to 'source/Plugins/Instruction')
-rw-r--r--source/Plugins/Instruction/ARM64/EmulateInstructionARM64.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/source/Plugins/Instruction/ARM64/EmulateInstructionARM64.cpp b/source/Plugins/Instruction/ARM64/EmulateInstructionARM64.cpp
index d882108c25f4..d2832656d906 100644
--- a/source/Plugins/Instruction/ARM64/EmulateInstructionARM64.cpp
+++ b/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()
// =====