Commit 05075d4e by Aldy Hernandez Committed by Aldy Hernandez

postreload.c (move2add_note_store): Only call trunc_int_for_mode on scalar integers.

	* postreload.c (move2add_note_store): Only call
	trunc_int_for_mode on scalar integers.

From-SVN: r93658
parent a28fee03
2005-01-14 Aldy Hernandez <aldyh@redhat.com>
* postreload.c (move2add_note_store): Only call
trunc_int_for_mode on scalar integers.
2005-01-14 Steven Bosscher <stevenb@suse.de>
* tree-ssa-dce.c (visited_control_parents): New sbitmap to
......
......@@ -1457,7 +1457,7 @@ move2add_note_store (rtx dst, rtx set, void *data ATTRIBUTE_UNUSED)
regno += REGNO (dst);
if (SCALAR_INT_MODE_P (mode)
if (SCALAR_INT_MODE_P (GET_MODE (dst))
&& hard_regno_nregs[regno][mode] == 1 && GET_CODE (set) == SET
&& GET_CODE (SET_DEST (set)) != ZERO_EXTRACT
&& GET_CODE (SET_DEST (set)) != STRICT_LOW_PART)
......
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