From f316415f58332f07861e954da1088fd772897317 Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Wed, 4 Nov 2015 22:29:49 -0600 Subject: [PATCH] lzx_compress.c: remove unused function --- src/lzx_compress.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/lzx_compress.c b/src/lzx_compress.c index f6b29b30..1bf1bf09 100644 --- a/src/lzx_compress.c +++ b/src/lzx_compress.c @@ -331,15 +331,6 @@ lzx_lru_queue_push(struct lzx_lru_queue queue, u32 offset) }; } -/* Pop a match offset off the front (most recently used) end of the queue. */ -static inline u32 -lzx_lru_queue_pop(struct lzx_lru_queue *queue_p) -{ - u32 offset = queue_p->R & LZX_QUEUE64_OFFSET_MASK; - queue_p->R >>= LZX_QUEUE64_OFFSET_SHIFT; - return offset; -} - /* Swap a match offset to the front of the queue. */ static inline struct lzx_lru_queue lzx_lru_queue_swap(struct lzx_lru_queue queue, unsigned idx) -- 2.43.0