From b5c02bff5c40123ed109c8ffc3d4eac6cc28cf26 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Wed, 14 Nov 2001 17:30:04 +0000 Subject: [PATCH] * function.c (struct temp_slot): ALIGN now unsigned. From-SVN: r47016 --- gcc/ChangeLog | 4 ++++ gcc/function.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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 -- 2.30.2