diff options
author | Richard Kenner <kenner@vlsi1.ultra.nyu.edu> | 2001-11-14 17:30:04 +0000 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 2001-11-14 12:30:04 -0500 |
commit | b5c02bff5c40123ed109c8ffc3d4eac6cc28cf26 (patch) | |
tree | 1f4ef8fac53138ca40c2164188fae23297cdf8dd /gcc/function.c | |
parent | bf0e974bd3ef973f02f82d3d2180f7783b3e92ee (diff) | |
download | gcc-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/function.c')
-rw-r--r-- | gcc/function.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |