mips.c (print_operand): Increase buffer size for real numbers.
authorAlexandre Oliva <aoliva@redhat.com>
Mon, 14 Oct 2002 19:53:25 +0000 (19:53 +0000)
committerAlexandre Oliva <aoliva@gcc.gnu.org>
Mon, 14 Oct 2002 19:53:25 +0000 (19:53 +0000)
* config/mips/mips.c (print_operand): Increase buffer size for
real numbers.

From-SVN: r58132

gcc/ChangeLog
gcc/config/mips/mips.c

index 8233cba8dedaaa8a1f2b92a8bd53b5c0efdd3bbc..4267e4e69620846c47ea2c89581a7963b96d8dbd 100644 (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
index 28d97e23f0ac0203be06089bd97562610514d5a7..82e23077ceb6d49415ecb6c551c89261606f105c 100644 (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);