From 505d6e2b92aedbbe10a95fbbbe4e07b0d9d47fb0 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Wed, 30 Oct 1996 15:53:58 -0500 Subject: [PATCH] (layout_record): Use HOST_WIDE_INT for size. From-SVN: r13078 --- gcc/stor-layout.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. */ -- 2.30.2