Commit d3e0dffb by Jan Hubicka Committed by Jan Hubicka

* varasm.c (output_constant): Fix underflow.

From-SVN: r66732
parent 96ef4bdc
Mon May 12 21:53:29 CEST 2003 Jan Hubicka <jh@suse.cz>
* varasm.c (output_constant): Fix underflow.
2003-05-12 Mark Mitchell <mark@codesourcery.com>
PR other/10745
......
......@@ -3913,9 +3913,8 @@ output_constant (exp, size, align)
abort ();
}
size -= thissize;
if (size > 0)
assemble_zeros (size);
if (size > thissize)
assemble_zeros (size - thissize);
}
......
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