* expr.c (store_constructor): Fix pasto in previous patch.
authorJan Hubicka <jh@suse.cz>
Fri, 2 Jan 2004 16:13:14 +0000 (17:13 +0100)
committerJan Hubicka <hubicka@gcc.gnu.org>
Fri, 2 Jan 2004 16:13:14 +0000 (16:13 +0000)
From-SVN: r75327

gcc/ChangeLog
gcc/expr.c

index 8f95d6ce42d07bfa87622e39f584877d24839eb5..b2b7a14ab220406bc1ed5b60357bbe197e75bb3d 100644 (file)
@@ -1,3 +1,7 @@
+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>
 
        * config/i386/cygming.h: Fix comment formatting.
index b0608fa57e1c3b2beef35e18b82757e2108283dd..e873865c6c6a57a920da375ee414a5bcd3abf68f 100644 (file)
@@ -4994,9 +4994,8 @@ store_constructor (tree exp, rtx target, int cleared, HOST_WIDE_INT size)
                  target = copy_rtx (target);
                  MEM_KEEP_ALIAS_SET_P (target) = 1;
                }
-             else
-               store_constructor_field (target, bitsize, bitpos, mode, value,
-                                        type, cleared, get_alias_set (elttype));
+             store_constructor_field (target, bitsize, bitpos, mode, value,
+                                      type, cleared, get_alias_set (elttype));
            }
        }
       if (vector)