From: Richard Kenner Date: Wed, 14 Nov 2001 17:30:04 +0000 (+0000) Subject: * function.c (struct temp_slot): ALIGN now unsigned. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b5c02bff5c40123ed109c8ffc3d4eac6cc28cf26;p=gcc.git * function.c (struct temp_slot): ALIGN now unsigned. From-SVN: r47016 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 25ffd6655c5..7607c84292b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Wed Nov 14 12:30:57 2001 Richard Kenner + + * function.c (struct temp_slot): ALIGN now unsigned. + 2001-11-14 Kazu Hirata * config/dsp16xx/dsp16xx.c: Fix comment formatting. diff --git a/gcc/function.c b/gcc/function.c index 3f3f11c302f..eeea78c4aed 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -181,7 +181,7 @@ struct temp_slot slot above. May be an EXPR_LIST if multiple addresses exist. */ rtx address; /* The alignment (in bits) of the slot. */ - int align; + unsigned int align; /* The size, in units, of the slot. */ HOST_WIDE_INT size; /* The type of the object in the slot, or zero if it doesn't correspond