expr.c (emit_block_move): Use copy_to_mode_reg for !TARGET_MEM_FUNCTIONS case too.
* expr.c (emit_block_move): Use copy_to_mode_reg for !TARGET_MEM_FUNCTIONS case too. From-SVN: r27862
This commit is contained in:
parent
70f7276781
commit
f3dc586a42
@ -1,5 +1,8 @@
|
||||
Wed Jun 30 03:31:54 1999 Jeffrey A Law (law@cygnus.com)
|
||||
|
||||
* expr.c (emit_block_move): Use copy_to_mode_reg for
|
||||
!TARGET_MEM_FUNCTIONS case too.
|
||||
|
||||
* configure.in (hppa*-*-*): Add som.h or elf.h to tm_file as
|
||||
appropriate.
|
||||
* configure: Rebuilt.
|
||||
|
@ -1738,7 +1738,7 @@ emit_block_move (x, y, size, align)
|
||||
#else
|
||||
size = convert_to_mode (TYPE_MODE (integer_type_node), size,
|
||||
TREE_UNSIGNED (integer_type_node));
|
||||
size = copy_to_reg (size);
|
||||
size = copy_to_mode_reg (TYPE_MODE (integer_type_node), size);
|
||||
#endif
|
||||
|
||||
#ifdef TARGET_MEM_FUNCTIONS
|
||||
@ -2499,7 +2499,7 @@ clear_storage (object, size, align)
|
||||
#else
|
||||
size = convert_to_mode (TYPE_MODE (integer_type_node), size,
|
||||
TREE_UNSIGNED (integer_type_node));
|
||||
size = copy_to_reg (size);
|
||||
size = copy_to_mode_reg (TYPE_MODE (integer_type_node), size);
|
||||
#endif
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user