diff options
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/print-rtl.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4fdcdda..e15b0d8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Tue Oct 8 16:50:10 CEST 2002 Jan Hubicka <jh@suse.cz> + + * print-rtl.c (print_rtx): Increase buffer size for real numbers. + 2002-10-08 Richard Sandiford <rsandifo@redhat.com> * config/mips/mips.md (define_attr cpu): Add r4111. diff --git a/gcc/print-rtl.c b/gcc/print-rtl.c index ebebf85..7a69d02 100644 --- a/gcc/print-rtl.c +++ b/gcc/print-rtl.c @@ -522,7 +522,7 @@ print_rtx (in_rtx) case CONST_DOUBLE: if (FLOAT_MODE_P (GET_MODE (in_rtx))) { - char s[30]; + char s[60]; real_to_decimal (s, CONST_DOUBLE_REAL_VALUE (in_rtx), -1); fprintf (outfile, " %s", s); |
