Commit 9b9bd3b2 by Jan Hubicka Committed by Jan Hubicka

* expr.c (store_constructor): Fix pasto in previous patch.

From-SVN: r75327
parent 71af2621
2004-01-02 Jan Hubicka <jh@suse.cz>
* expr.c (store_constructor): Fix pasto in previous patch.
2004-01-02 Kazu Hirata <kazu@cs.umass.edu> 2004-01-02 Kazu Hirata <kazu@cs.umass.edu>
* config/i386/cygming.h: Fix comment formatting. * config/i386/cygming.h: Fix comment formatting.
......
...@@ -4994,9 +4994,8 @@ store_constructor (tree exp, rtx target, int cleared, HOST_WIDE_INT size) ...@@ -4994,9 +4994,8 @@ store_constructor (tree exp, rtx target, int cleared, HOST_WIDE_INT size)
target = copy_rtx (target); target = copy_rtx (target);
MEM_KEEP_ALIAS_SET_P (target) = 1; MEM_KEEP_ALIAS_SET_P (target) = 1;
} }
else store_constructor_field (target, bitsize, bitpos, mode, value,
store_constructor_field (target, bitsize, bitpos, mode, value, type, cleared, get_alias_set (elttype));
type, cleared, get_alias_set (elttype));
} }
} }
if (vector) if (vector)
......
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