Commit e7105755 by Jim Wilson

(output_constructor): Change type of variable value to

HOST_WIDE_INT.

From-SVN: r8705
parent 2f97afcb
...@@ -3754,7 +3754,8 @@ output_constructor (exp, size) ...@@ -3754,7 +3754,8 @@ output_constructor (exp, size)
while (next_offset < end_offset) while (next_offset < end_offset)
{ {
int this_time; int this_time;
int shift, value; int shift;
HOST_WIDE_INT value;
int next_byte = next_offset / BITS_PER_UNIT; int next_byte = next_offset / BITS_PER_UNIT;
int next_bit = next_offset % BITS_PER_UNIT; int next_bit = next_offset % BITS_PER_UNIT;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment