* function.c (struct temp_slot): ALIGN now unsigned.
authorRichard Kenner <kenner@vlsi1.ultra.nyu.edu>
Wed, 14 Nov 2001 17:30:04 +0000 (17:30 +0000)
committerRichard Kenner <kenner@gcc.gnu.org>
Wed, 14 Nov 2001 17:30:04 +0000 (12:30 -0500)
From-SVN: r47016

gcc/ChangeLog
gcc/function.c

index 25ffd6655c50b82a459eafedcfb119fa6e058f00..7607c84292bc37a13dbfafa6a3bf113e85735670 100644 (file)
@@ -1,3 +1,7 @@
+Wed Nov 14 12:30:57 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
+
+       * function.c (struct temp_slot): ALIGN now unsigned.
+
 2001-11-14  Kazu Hirata  <kazu@hxi.com>
 
        * config/dsp16xx/dsp16xx.c: Fix comment formatting.
index 3f3f11c302ff86f0c94d6747570d7ea67c7c61ec..eeea78c4aede7de32dd8c231971a5b4daee979e8 100644 (file)
@@ -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