Commit 7c02ae17 by David Edelsohn Committed by David Edelsohn

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

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

From-SVN: r60437
parent 317d21e9
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
......
......@@ -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;
......
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