From: Richard Kenner Date: Wed, 30 Oct 1996 20:53:58 +0000 (-0500) Subject: (layout_record): Use HOST_WIDE_INT for size. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=505d6e2b92aedbbe10a95fbbbe4e07b0d9d47fb0;p=gcc.git (layout_record): Use HOST_WIDE_INT for size. From-SVN: r13078 --- diff --git a/gcc/stor-layout.c b/gcc/stor-layout.c index 6f78992da10..61768f84263 100644 --- a/gcc/stor-layout.c +++ b/gcc/stor-layout.c @@ -318,7 +318,7 @@ layout_record (rec) and VAR_SIZE is a tree expression. If VAR_SIZE is null, the size is just CONST_SIZE. Naturally we try to avoid using VAR_SIZE. */ - register int const_size = 0; + register HOST_WIDE_INT const_size = 0; register tree var_size = 0; /* Once we start using VAR_SIZE, this is the maximum alignment that we know VAR_SIZE has. */