]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
mips.md (fixuns_truncdfsi2, [...]): Avoid automatic aggregate initialization.
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>
Tue, 25 Jun 2002 01:52:37 +0000 (01:52 +0000)
committerKaveh Ghazi <ghazi@gcc.gnu.org>
Tue, 25 Jun 2002 01:52:37 +0000 (01:52 +0000)
* mips.md (fixuns_truncdfsi2, fixuns_truncdfdi2,
fixuns_truncsfsi2, fixuns_truncsfdi2): Avoid automatic aggregate
initialization.

From-SVN: r54975

gcc/ChangeLog
gcc/config/mips/mips.md

index 45a686c03c7839df2dd5debcb7c20a603c165217..11ca9c5e8f9f4f200fc216e76e8600e5d9433e9e 100644 (file)
@@ -1,3 +1,9 @@
+2002-06-24  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+
+       * mips.md (fixuns_truncdfsi2, fixuns_truncdfdi2,
+       fixuns_truncsfsi2, fixuns_truncsfdi2): Avoid automatic aggregate
+       initialization.
+
 2002-06-24  Jeff Law <law@redhat.com>
 
        * flow.c (propagate_one_insn): When removing an insn
index fece404b40b035c2dcf3b587a6a5ebc4f109e62d..b804f33408a19b7c96fe58edf3584702b2bbb2e2 100644 (file)
@@ -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 */
     {