Commit d0285326 by Jakub Jelinek Committed by Jakub Jelinek

alpha.c (alpha_expand_block_move): GET_MODE of tmp, not XEXP (tmp, 0).

	* config/alpha/alpha.c (alpha_expand_block_move): GET_MODE of tmp,
	not XEXP (tmp, 0).

From-SVN: r38960
parent 770861f3
2001-01-12 Jakub Jelinek <jakub@redhat.com>
* config/alpha/alpha.c (alpha_expand_block_move): GET_MODE of tmp,
not XEXP (tmp, 0).
2001-01-12 DJ Delorie <dj@redhat.com> 2001-01-12 DJ Delorie <dj@redhat.com>
* Makefile.in (bootstrap): rename stages to be mnemonic. Add * Makefile.in (bootstrap): rename stages to be mnemonic. Add
......
...@@ -2923,7 +2923,7 @@ alpha_expand_block_move (operands) ...@@ -2923,7 +2923,7 @@ alpha_expand_block_move (operands)
/* No appropriate mode; fall back on memory. */ /* No appropriate mode; fall back on memory. */
orig_src = change_address (orig_src, GET_MODE (orig_src), orig_src = change_address (orig_src, GET_MODE (orig_src),
copy_addr_to_reg (XEXP (orig_src, 0))); copy_addr_to_reg (XEXP (orig_src, 0)));
src_align = GET_MODE_BITSIZE (GET_MODE (XEXP (tmp, 0))); src_align = GET_MODE_BITSIZE (GET_MODE (tmp));
} }
ofs = 0; ofs = 0;
...@@ -3077,7 +3077,7 @@ alpha_expand_block_move (operands) ...@@ -3077,7 +3077,7 @@ alpha_expand_block_move (operands)
up by recognizing extra alignment information. */ up by recognizing extra alignment information. */
orig_dst = change_address (orig_dst, GET_MODE (orig_dst), orig_dst = change_address (orig_dst, GET_MODE (orig_dst),
copy_addr_to_reg (XEXP (orig_dst, 0))); copy_addr_to_reg (XEXP (orig_dst, 0)));
dst_align = GET_MODE_BITSIZE (GET_MODE (XEXP (tmp, 0))); dst_align = GET_MODE_BITSIZE (GET_MODE (tmp));
} }
/* Write out the data in whatever chunks reading the source allowed. */ /* Write out the data in whatever chunks reading the source allowed. */
......
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