From: Mike Stump Date: Wed, 18 Jun 1997 21:30:55 +0000 (+0000) Subject: * flow.c (find_basic_blocks): Fix end case bug. X-Git-Tag: misc/cutover-egcs-0~322 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c13210e902928f267ec425da4981b43aca6dc3c2;p=thirdparty%2Fgcc.git * flow.c (find_basic_blocks): Fix end case bug. From-SVN: r14257 --- diff --git a/gcc/flow.c b/gcc/flow.c index 190cfc2ec8e6..0689d6041b34 100644 --- a/gcc/flow.c +++ b/gcc/flow.c @@ -608,7 +608,7 @@ find_basic_blocks (f, nonlocal_label_list) to as live. */ for (insn = basic_block_head[i]; - insn != basic_block_end[i]; + insn != NEXT_INSN (basic_block_end[i]); insn = NEXT_INSN (insn)) { if (GET_RTX_CLASS (GET_CODE (insn)) == 'i')