From: Kaveh R. Ghazi Date: Tue, 25 Jun 2002 01:52:37 +0000 (+0000) Subject: mips.md (fixuns_truncdfsi2, [...]): Avoid automatic aggregate initialization. X-Git-Tag: releases/gcc-3.3.0~4117 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=eef709c7f9bfa01f343c413a331b92108d95abdb;p=thirdparty%2Fgcc.git mips.md (fixuns_truncdfsi2, [...]): Avoid automatic aggregate initialization. * mips.md (fixuns_truncdfsi2, fixuns_truncdfdi2, fixuns_truncsfsi2, fixuns_truncsfdi2): Avoid automatic aggregate initialization. From-SVN: r54975 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 45a686c03c78..11ca9c5e8f9f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2002-06-24 Kaveh R. Ghazi + + * mips.md (fixuns_truncdfsi2, fixuns_truncdfdi2, + fixuns_truncsfsi2, fixuns_truncsfdi2): Avoid automatic aggregate + initialization. + 2002-06-24 Jeff Law * flow.c (propagate_one_insn): When removing an insn diff --git a/gcc/config/mips/mips.md b/gcc/config/mips/mips.md index fece404b40b0..b804f33408a1 100644 --- a/gcc/config/mips/mips.md +++ b/gcc/config/mips/mips.md @@ -4505,7 +4505,9 @@ move\\t%0,%z4\\n\\ rtx reg3 = gen_reg_rtx (SImode); rtx label1 = gen_label_rtx (); rtx label2 = gen_label_rtx (); - REAL_VALUE_TYPE offset = REAL_VALUE_LDEXP (dconst1, 31); + REAL_VALUE_TYPE offset; + + offset = REAL_VALUE_LDEXP (dconst1, 31); if (reg1) /* turn off complaints about unreached code */ { @@ -4549,7 +4551,9 @@ move\\t%0,%z4\\n\\ rtx reg3 = gen_reg_rtx (DImode); rtx label1 = gen_label_rtx (); rtx label2 = gen_label_rtx (); - REAL_VALUE_TYPE offset = REAL_VALUE_LDEXP (dconst1, 63); + REAL_VALUE_TYPE offset; + + offset = REAL_VALUE_LDEXP (dconst1, 63); if (reg1) /* turn off complaints about unreached code */ { @@ -4593,7 +4597,9 @@ move\\t%0,%z4\\n\\ rtx reg3 = gen_reg_rtx (SImode); rtx label1 = gen_label_rtx (); rtx label2 = gen_label_rtx (); - REAL_VALUE_TYPE offset = REAL_VALUE_LDEXP (dconst1, 31); + REAL_VALUE_TYPE offset; + + offset = REAL_VALUE_LDEXP (dconst1, 31); if (reg1) /* turn off complaints about unreached code */ { @@ -4637,7 +4643,9 @@ move\\t%0,%z4\\n\\ rtx reg3 = gen_reg_rtx (DImode); rtx label1 = gen_label_rtx (); rtx label2 = gen_label_rtx (); - REAL_VALUE_TYPE offset = REAL_VALUE_LDEXP (dconst1, 63); + REAL_VALUE_TYPE offset; + + offset = REAL_VALUE_LDEXP (dconst1, 63); if (reg1) /* turn off complaints about unreached code */ {