Commit 40e6bc7e by Alexandre Oliva Committed by Alexandre Oliva

mips.c (print_operand): Increase buffer size for real numbers.

* config/mips/mips.c (print_operand): Increase buffer size for
real numbers.

From-SVN: r58132
parent 006941eb
2002-10-14 Alexandre Oliva <aoliva@redhat.com>
* config/mips/mips.c (print_operand): Increase buffer size for
real numbers.
2002-10-14 Richard Henderson <rth@redhat.com>
PR opt/8165
......
......@@ -5911,7 +5911,7 @@ print_operand (file, op, letter)
&& GET_MODE_CLASS (GET_MODE (op)) == MODE_FLOAT)
{
REAL_VALUE_TYPE d;
char s[30];
char s[60];
REAL_VALUE_FROM_CONST_DOUBLE (d, op);
REAL_VALUE_TO_DECIMAL (d, s, -1);
......
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