decompress_unlzma: 10% speedup in "small" code
authorDenys Vlasenko <vda.linux@googlemail.com>
Fri, 1 Mar 2013 13:43:07 +0000 (14:43 +0100)
committerDenys Vlasenko <vda.linux@googlemail.com>
Fri, 1 Mar 2013 13:43:07 +0000 (14:43 +0100)
   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 <vda.linux@googlemail.com>
archival/libarchive/decompress_unlzma.c

index dd08e77f35dc45e9cbebf23b716511e83849d9d4..187035daa7948417bd5243886873f9adcc9aeaf4 100644 (file)
@@ -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;