From: Michael Hayes Date: Mon, 7 Oct 2002 22:20:10 +0000 (+0000) Subject: c4x.c (c4x_print_operand): Enlarge buffer for REAL_VALUE_TO_DECIMAL output. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=25009e02376191461adcc141eb1d98f6eed704f5;p=gcc.git c4x.c (c4x_print_operand): Enlarge buffer for REAL_VALUE_TO_DECIMAL output. * config/c4x/c4x.c (c4x_print_operand): Enlarge buffer for REAL_VALUE_TO_DECIMAL output. From-SVN: r57908 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 558eaa7506c..a1d5e553015 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-10-08 Michael Hayes + + * config/c4x/c4x.c (c4x_print_operand): Enlarge buffer + for REAL_VALUE_TO_DECIMAL output. + 2002-10-07 David Edelsohn * config/rs6000/rs6000.c (rs6000_override_options): Set diff --git a/gcc/config/c4x/c4x.c b/gcc/config/c4x/c4x.c index cbf05679826..78cd053a95c 100644 --- a/gcc/config/c4x/c4x.c +++ b/gcc/config/c4x/c4x.c @@ -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);