Commit 5e5cf1ee by Ben Elliston Committed by Ben Elliston

* varasm.c (assemble_real): Initialise data array.

From-SVN: r110049
parent d5b6e637
2006-01-21 Ben Elliston <bje@au.ibm.com>
* varasm.c (assemble_real): Initialise data array.
2006-01-20 Paul Brook <paul@codesourcery.com>
Merge from csl-arm-branch.
......
......@@ -2094,7 +2094,7 @@ assemble_integer (rtx x, unsigned int size, unsigned int align, int force)
void
assemble_real (REAL_VALUE_TYPE d, enum machine_mode mode, unsigned int align)
{
long data[4];
long data[4] = {0, 0, 0, 0};
int i;
int bitsize, nelts, nunits, units_per;
......
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