From: Denys Vlasenko Date: Fri, 1 Mar 2013 13:43:07 +0000 (+0100) Subject: decompress_unlzma: 10% speedup in "small" code X-Git-Tag: 1_22_0~251 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=a2d04e0702dcdd8b4d2e41145253608b8fd95c9d;p=oweals%2Fbusybox.git decompress_unlzma: 10% speedup in "small" code text data bss dec hex filename 1796 0 0 1796 704 decompress_unlzma.o 1801 0 0 1801 709 decompress_unlzma.o Signed-off-by: Denys Vlasenko --- diff --git a/archival/libarchive/decompress_unlzma.c b/archival/libarchive/decompress_unlzma.c index dd08e77f3..187035daa 100644 --- a/archival/libarchive/decompress_unlzma.c +++ b/archival/libarchive/decompress_unlzma.c @@ -114,7 +114,7 @@ static speed_inline int rc_is_bit_1(rc_t *rc, uint16_t *p) } /* Called 4 times in unlzma loop */ -static speed_inline int rc_get_bit(rc_t *rc, uint16_t *p, int *symbol) +static ALWAYS_INLINE int rc_get_bit(rc_t *rc, uint16_t *p, int *symbol) { int ret = rc_is_bit_1(rc, p); *symbol = *symbol * 2 + ret;