expr.c (expand_assignment): Apply special treatment to ARRAY_TYPE.

* expr.c (expand_assignment): Apply special treatment to
        ARRAY_TYPE.

From-SVN: r60437
This commit is contained in:
David Edelsohn 2002-12-23 15:26:13 +00:00 committed by David Edelsohn
parent 317d21e95b
commit 7c02ae17fe
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2002-12-23 David Edelsohn <edelsohn@gnu.org>
* expr.c (expand_assignment): Apply special treatment to
ARRAY_TYPE.
2002-12-23 Kazu Hirata <kazu@cs.umass.edu>
* config/h8300/h8300-protos.h: Update the prototype of

View File

@ -4027,7 +4027,8 @@ expand_assignment (to, from, want_value, suggest_reg)
problem. */
if (TREE_CODE (to) == COMPONENT_REF || TREE_CODE (to) == BIT_FIELD_REF
|| TREE_CODE (to) == ARRAY_REF || TREE_CODE (to) == ARRAY_RANGE_REF)
|| TREE_CODE (to) == ARRAY_REF || TREE_CODE (to) == ARRAY_RANGE_REF
|| TREE_CODE (TREE_TYPE (to)) == ARRAY_TYPE)
{
enum machine_mode mode1;
HOST_WIDE_INT bitsize, bitpos;