Even more updated alignments patch

Richard Henderson rth@redhat.com
Sat Aug 18 10:30:00 GMT 2001


On Fri, Aug 17, 2001 at 03:52:50PM +0200, Jan Hubicka wrote:
> +   label_align = (struct label_alignment *) xcalloc ((max_labelno - min_labelno + 1),
> + 	     sizeof (struct label_alignment));

Wrap like so:

  label_align = (struct label_alignment *)
    xcalloc (max_labelno - min_labelno + 1, sizeof (struct label_alignment));

> +   /* If not optimizing or optimizing for size, don't assign any alignments.  */

Where is the test for (!optimize || optimize_size)?

> ! @findex JUMP_ALIGN_AFTER_BARRIER
> ! @item JUMP_ALIGN (@var{label})

findex should match item.



r~



More information about the Gcc-patches mailing list