bzip2: more of code shrink

compressStream                                       503     473     -30
BZ2_bzCompress                                        78       -     -78
------------------------------------------------------------------------------
(add/remove: 0/1 grow/shrink: 0/1 up/down: 0/-108)           Total: -108 bytes
   text    data     bss     dec     hex filename
 676300    2538   12104  690942   a8afe busybox_old
 676192    2538   12104  690834   a8a92 busybox_unstripped
This commit is contained in:
Denis Vlasenko
2007-10-17 10:14:11 +00:00
parent 16e74b7464
commit 31acd1ba0a
2 changed files with 38 additions and 64 deletions

View File

@@ -76,11 +76,9 @@ void init_RL(EState* s)
static
Bool isempty_RL(EState* s)
int isempty_RL(EState* s)
{
if (s->state_in_ch < 256 && s->state_in_len > 0)
return False;
return True;
return (s->state_in_ch >= 256 || s->state_in_len <= 0);
}
@@ -333,7 +331,7 @@ int BZ2_bzCompress(bz_stream *strm, int action)
}
#ifdef FLUSH_IS_UNUSED
case_BZ_M_FLUSHING:
case_BZ_M_FLUSHING:
case BZ_M_FLUSHING:
/*if (s->avail_in_expect != s->strm->avail_in)
return BZ_SEQUENCE_ERROR;*/