From e7105755c0c8e78d90df8e10df3a3a9fe809ebc7 Mon Sep 17 00:00:00 2001 From: Jim Wilson Date: Thu, 29 Dec 1994 11:16:13 -0800 Subject: [PATCH] (output_constructor): Change type of variable value to HOST_WIDE_INT. From-SVN: r8705 --- gcc/varasm.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gcc/varasm.c b/gcc/varasm.c index d0733d34f5e..89a0d249aa6 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -3754,7 +3754,8 @@ output_constructor (exp, size) while (next_offset < end_offset) { int this_time; - int shift, value; + int shift; + HOST_WIDE_INT value; int next_byte = next_offset / BITS_PER_UNIT; int next_bit = next_offset % BITS_PER_UNIT; -- 2.30.2