Commit 52fdbf26 by Geoffrey Keating Committed by Geoffrey Keating

reload1.c (move2add_note_store): Correct typo checking for argument pushes.

	* reload1.c (move2add_note_store): Correct typo checking for
	argument pushes.

From-SVN: r45279
parent 9500c902
2001-08-29 Geoffrey Keating <geoffk@redhat.com>
* reload1.c (move2add_note_store): Correct typo checking for
argument pushes.
2001-08-29 Andrew MacLeod <amacleod@redhat.com>
* gcse.c (compute_hash_table): The SRC part of an insn with a RETVAL
......
......@@ -9300,7 +9300,7 @@ move2add_note_store (dst, set, data)
if (GET_CODE (dst) == MEM)
{
dst = XEXP (dst, 0);
if (GET_CODE (dst) == PRE_INC || GET_CODE (dst) == POST_DEC
if (GET_CODE (dst) == PRE_INC || GET_CODE (dst) == POST_INC
|| GET_CODE (dst) == PRE_DEC || GET_CODE (dst) == POST_DEC)
reg_set_luid[REGNO (XEXP (dst, 0))] = 0;
return;
......
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