Commit c7fdfd49 by Jeffrey A Law Committed by Jeff Law

function.c (identify_blocks): Fix thinko when setting the block number for NOTE_INSN_BLOCK_END.

        * function.c (identify_blocks): Fix thinko when setting the
        block number for NOTE_INSN_BLOCK_END.

From-SVN: r19857
parent f122eb7a
Mon May 18 22:37:33 1998 Jeffrey A Law (law@cygnus.com)
* function.c (identify_blocks): Fix thinko when setting the
block number for NOTE_INSN_BLOCK_END.
Mon May 18 15:30:42 1998 Nick Clifton <nickc@cygnus.com>
* config/v850/lib1funcs.asm: Add .text pseudo op to start of
......
......@@ -5133,8 +5133,8 @@ identify_blocks (block, insns)
}
if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_END)
{
current_block_number = block_stack[--depth];
NOTE_BLOCK_NUMBER (insn) = current_block_number;
current_block_number = block_stack[--depth];
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment