From: Jim Wilson Date: Thu, 29 Dec 1994 19:16:13 +0000 (-0800) Subject: (output_constructor): Change type of variable value to X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e7105755c0c8e78d90df8e10df3a3a9fe809ebc7;p=gcc.git (output_constructor): Change type of variable value to HOST_WIDE_INT. From-SVN: r8705 --- 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;