diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-11-14 17:30:04 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-11-14 17:30:04 +0000 |
commit | 307dd88321d4c4cd01098e320d800e59fc9ba371 (patch) | |
tree | 1f4ef8fac53138ca40c2164188fae23297cdf8dd /gcc/function.c | |
parent | 4c31631436a9e3dfefdd5d04d7e81789f4fdb4b0 (diff) | |
download | gcc-307dd88321d4c4cd01098e320d800e59fc9ba371.tar.gz |
* function.c (struct temp_slot): ALIGN now unsigned.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@47016 138bc75d-0d04-0410-961f-82ee72b054a4
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 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 |