re PR rtl-optimization/23043 ([m68k-linux] bootstrap error on m68k-linux)
authorAndreas Schwab <schwab@suse.de>
Mon, 25 Jul 2005 23:22:05 +0000 (23:22 +0000)
committerAndreas Schwab <schwab@gcc.gnu.org>
Mon, 25 Jul 2005 23:22:05 +0000 (23:22 +0000)
PR rtl-optimization/23043
* postreload-gcse.c (eliminate_partially_redundant_load): Fix typo
when allocating a struct unoccr.

From-SVN: r102374

gcc/ChangeLog
gcc/postreload-gcse.c

index 587ebf18d204e1a9969183d23781d6d6790b6097..11ef2a555763dae0f60ae7b77c6cc3202f09736d 100644 (file)
@@ -1,3 +1,9 @@
+2005-07-26  Andreas Schwab  <schwab@suse.de>
+
+       PR rtl-optimization/23043
+       * postreload-gcse.c (eliminate_partially_redundant_load): Fix typo
+       when allocating a struct unoccr.
+
 2005-07-25  Richard Henderson  <rth@redhat.com>
 
        PR 22626
index cf08c09aba7374a4f74de6acc6a52ee15bd04913..4b7d0e9a7d0942d593b8f6791cd6ac7bb9c90ea6 100644 (file)
@@ -1075,7 +1075,7 @@ eliminate_partially_redundant_load (basic_block bb, rtx insn,
          else /* Its a dead move no need to generate.  */
            continue;
          occr = (struct unoccr *) obstack_alloc (&unoccr_obstack,
-                                                 sizeof (struct occr));
+                                                 sizeof (struct unoccr));
          occr->insn = avail_insn;
          occr->pred = pred;
          occr->next = avail_occrs;