diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-10-08 14:54:18 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-10-08 14:54:18 +0200 |
commit | ef5bc2c39c8b2dfda3915345f7abb17e1927684d (patch) | |
tree | c40c72e4d61cb07f2e3bb4380d840c4cedb8bec6 /archival | |
parent | adf922ec2800d53f5eedd469cf99c55946caeb43 (diff) | |
download | busybox-ef5bc2c39c8b2dfda3915345f7abb17e1927684d.tar.gz |
*: three more NOINLINEs
function old new delta
lzo_decompress - 525 +525
lzo_compress - 470 +470
showmode - 330 +330
fbset_main 1698 1273 -425
do_lzo_compress 799 323 -476
do_lzo_decompress 1167 526 -641
------------------------------------------------------------------------------
(add/remove: 3/0 grow/shrink: 0/3 up/down: 1325/-1542) Total: -217 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'archival')
-rw-r--r-- | archival/lzop.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archival/lzop.c b/archival/lzop.c index 5f2744d91..46aa2d3d1 100644 --- a/archival/lzop.c +++ b/archival/lzop.c @@ -598,7 +598,7 @@ static int lzo_get_method(header_t *h) /**********************************************************************/ // compress a file /**********************************************************************/ -static smallint lzo_compress(const header_t *h) +static NOINLINE smallint lzo_compress(const header_t *h) { unsigned block_size = LZO_BLOCK_SIZE; int r = 0; /* LZO_E_OK */ @@ -706,7 +706,7 @@ static void lzo_check(uint32_t FAST_FUNC (*fn)(uint32_t, const uint8_t*, unsigne /**********************************************************************/ // decompress a file /**********************************************************************/ -static smallint lzo_decompress(const header_t *h) +static NOINLINE smallint lzo_decompress(const header_t *h) { unsigned block_size = LZO_BLOCK_SIZE; int r; |