Commit f0f1c408 by Jie Zhang Committed by Jie Zhang

bfin.c (bfin_reorg_loops): Only call recog_memoized () for real instruction.

	* config/bfin/bfin.c (bfin_reorg_loops): Only call recog_memoized ()
	for real instruction.

From-SVN: r114608
parent 10827cd8
2006-06-13 Jie Zhang <jie.zhang@analog.com>
* config/bfin/bfin.c (bfin_reorg_loops): Only call recog_memoized ()
for real instruction.
2006-06-13 Maxim Kuvyrkov <mkuvyrkov@ispras.ru>
PR middle-end/26807
......
......@@ -3350,7 +3350,7 @@ bfin_reorg_loops (FILE *dump_file)
tail = PREV_INSN (tail);
bb->aux = NULL;
if (recog_memoized (tail) == CODE_FOR_loop_end)
if (INSN_P (tail) && recog_memoized (tail) == CODE_FOR_loop_end)
{
/* A possible loop end */
......
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