re PR rtl-optimization/23043 ([m68k-linux] bootstrap error on m68k-linux)

PR rtl-optimization/23043
	* postreload-gcse.c (eliminate_partially_redundant_load): Fix typo
	when allocating a struct unoccr.

From-SVN: r102374
This commit is contained in:
Andreas Schwab 2005-07-25 23:22:05 +00:00 committed by Andreas Schwab
parent 5306ec31f5
commit 9275de65ab
2 changed files with 7 additions and 1 deletions

View 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

View 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;