Commit 81983b04 by Kazu Hirata Committed by Kazu Hirata

h8300.c (compute_mov_length): Fix length of mov:SF on H8/300.

	* config/h8300/h8300.c (compute_mov_length): Fix length of
	mov:SF on H8/300.

From-SVN: r68709
parent 1e0b938e
2003-06-30 Kazu Hirata <kazu@cs.umass.edu>
* config/h8300/h8300.c (compute_mov_length): Fix length of
mov:SF on H8/300.
2003-06-30 Nick Clifton <nickc@redhat.com>
* config/arm/arm.h (BIGGEST_FIELD_ALIGNMENT): Make defintion
......
......@@ -1893,10 +1893,7 @@ compute_mov_length (rtx *operands)
if (REG_P (src))
return 4;
if (src == const0_rtx)
return 2;
return 6;
return 8;
}
base_length = 8;
......
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