aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Kenner <kenner@vlsi1.ultra.nyu.edu>2001-11-14 17:30:04 +0000
committerRichard Kenner <kenner@gcc.gnu.org>2001-11-14 12:30:04 -0500
commitb5c02bff5c40123ed109c8ffc3d4eac6cc28cf26 (patch)
tree1f4ef8fac53138ca40c2164188fae23297cdf8dd /gcc
parentbf0e974bd3ef973f02f82d3d2180f7783b3e92ee (diff)
downloadgcc-b5c02bff5c40123ed109c8ffc3d4eac6cc28cf26.zip
gcc-b5c02bff5c40123ed109c8ffc3d4eac6cc28cf26.tar.gz
gcc-b5c02bff5c40123ed109c8ffc3d4eac6cc28cf26.tar.bz2
* function.c (struct temp_slot): ALIGN now unsigned.
From-SVN: r47016
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/function.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 25ffd66..7607c84 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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.
diff --git a/gcc/function.c b/gcc/function.c
index 3f3f11c..eeea78c 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