Subversion Repositories freemyipod

Rev

Rev 184 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 184 Rev 551
Line 476... Line 476...
476
 
476
 
477
    c->last_m_off = 1;
477
    c->last_m_off = 1;
478
    r = find_match(c,swd,0,0);
478
    r = find_match(c,swd,0,0);
479
    if (r != UCL_E_OK)
479
    if (r != UCL_E_OK)
480
        return r;
480
        return r;
-
 
481
    int last_op = ((int)c->bb_op) >> 11;
481
    while (c->look > 0)
482
    while (c->look > 0)
482
    {
483
    {
483
        ucl_uint ahead;
484
        ucl_uint ahead;
484
        ucl_uint max_ahead;
485
        ucl_uint max_ahead;
485
        int l1, l2;
486
        int l1, l2;
486
 
487
 
-
 
488
	if (((int)c->bb_op) >> 11 != last_op)
-
 
489
	{
-
 
490
            last_op = ((int)c->bb_op) >> 11;
-
 
491
	    cputc(3, '.');
-
 
492
	}
-
 
493
 
487
        c->codesize = c->bb_op - out;
494
        c->codesize = c->bb_op - out;
488
 
495
 
489
        m_len = c->m_len;
496
        m_len = c->m_len;
490
        m_off = c->m_off;
497
        m_off = c->m_off;
491
 
498