diff options
author | Denys Vlasenko | 2021-10-10 14:32:05 +0200 |
---|---|---|
committer | Denys Vlasenko | 2021-10-10 14:32:05 +0200 |
commit | d3dbf4ac05e969b6648faea282df6dec7051e315 (patch) | |
tree | 0d4c3c5afa2e38dd74dc272a785d1192e9575fed /archival/libarchive/unxz | |
parent | 53b2fdcdba4ced600da963147be425a21d0f6e53 (diff) | |
download | busybox-d3dbf4ac05e969b6648faea282df6dec7051e315.zip busybox-d3dbf4ac05e969b6648faea282df6dec7051e315.tar.gz |
*: add more beneficial NOINLINEs
function old new delta
dec_main - 1729 +1729 -41 bytes
fallbackQSort3 - 671 +671 -70 bytes
verify_sun - 481 +481 -107 bytes
verify 1330 742 -588
fallbackSort 1469 728 -741
unpack_xz_stream 2306 536 -1770
------------------------------------------------------------------------------
(add/remove: 3/0 grow/shrink: 0/3 up/down: 2881/-3099) Total: -218 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'archival/libarchive/unxz')
-rw-r--r-- | archival/libarchive/unxz/xz_dec_stream.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/libarchive/unxz/xz_dec_stream.c b/archival/libarchive/unxz/xz_dec_stream.c index bf79105..31158b4 100644 --- a/archival/libarchive/unxz/xz_dec_stream.c +++ b/archival/libarchive/unxz/xz_dec_stream.c @@ -545,7 +545,7 @@ static enum xz_ret XZ_FUNC dec_block_header(struct xz_dec *s) return XZ_OK; } -static enum xz_ret XZ_FUNC dec_main(struct xz_dec *s, struct xz_buf *b) +static NOINLINE enum xz_ret XZ_FUNC dec_main(struct xz_dec *s, struct xz_buf *b) { enum xz_ret ret; |