mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 17:21:07 +08:00
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:
parent
317d21e95b
commit
7c02ae17fe
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user