OSDN Git Service

* config/c4x/c4x.c (c4x_print_operand): Enlarge buffer
authorm.hayes <m.hayes@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 7 Oct 2002 22:20:10 +0000 (22:20 +0000)
committerm.hayes <m.hayes@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 7 Oct 2002 22:20:10 +0000 (22:20 +0000)
for REAL_VALUE_TO_DECIMAL output.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@57908 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/c4x/c4x.c

index 558eaa7..a1d5e55 100644 (file)
@@ -1,3 +1,8 @@
+2002-10-08  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
+
+       * config/c4x/c4x.c (c4x_print_operand): Enlarge buffer
+       for REAL_VALUE_TO_DECIMAL output.
+
 2002-10-07  David Edelsohn  <edelsohn@gnu.org>
 
        * config/rs6000/rs6000.c (rs6000_override_options): Set
index cbf0567..78cd053 100644 (file)
@@ -1959,7 +1959,7 @@ c4x_print_operand (file, op, letter)
       
     case CONST_DOUBLE:
       {
-       char str[30];
+       char str[64];
        REAL_VALUE_TYPE r;
        
        REAL_VALUE_FROM_CONST_DOUBLE (r, op);