From 40e6bc7e975a1113b5e0267b5a059fb87c5e05be Mon Sep 17 00:00:00 2001 From: Alexandre Oliva Date: Mon, 14 Oct 2002 19:53:25 +0000 Subject: [PATCH] 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 --- gcc/ChangeLog | 5 +++++ gcc/config/mips/mips.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8233cba8ded..4267e4e6962 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-10-14 Alexandre Oliva + + * config/mips/mips.c (print_operand): Increase buffer size for + real numbers. + 2002-10-14 Richard Henderson PR opt/8165 diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index 28d97e23f0a..82e23077ceb 100644 --- a/gcc/config/mips/mips.c +++ b/gcc/config/mips/mips.c @@ -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); -- 2.30.2