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
This commit is contained in:
Alexandre Oliva 2002-10-14 19:53:25 +00:00 committed by Alexandre Oliva
parent 006941eb2f
commit 40e6bc7e97
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
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

View File

@ -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);