X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=archival%2Flzop.c;h=46aa2d3d119330de48d61e2beeb988dcac60b915;hb=4928f3b90b3925e6f3cc234df48e46f88fc5689b;hp=5f2744d91a330041f8c0eba751d0f64ebaa79c7a;hpb=a7bb3c1396056248a71ea188f217de3f4876947e;p=oweals%2Fbusybox.git 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;