(init_68881_table): Use SFmode for the first six constants and DFmode
authorRichard Kenner <kenner@gcc.gnu.org>
Wed, 31 Jan 1996 13:25:31 +0000 (08:25 -0500)
committerRichard Kenner <kenner@gcc.gnu.org>
Wed, 31 Jan 1996 13:25:31 +0000 (08:25 -0500)
for the seventh.

From-SVN: r11137

gcc/config/m68k/m68k.c

index 1a39918e2373a9016ee86bb5a088bac307d0cf50..3fd8463c344d3a12351533695d46646761c8c351 100644 (file)
@@ -1,5 +1,5 @@
 /* Subroutines for insn-output.c for Motorola 68000 family.
-   Copyright (C) 1987, 1993, 1994, 1995 Free Software Foundation, Inc.
+   Copyright (C) 1987, 1993, 1994, 1995, 1996 Free Software Foundation, Inc.
 
 This file is part of GNU CC.
 
@@ -1783,11 +1783,11 @@ init_68881_table ()
   REAL_VALUE_TYPE r;
   enum machine_mode mode;
 
-  mode = DFmode;
+  mode = SFmode;
   for (i = 0; i < 7; i++)
     {
       if (i == 6)
-        mode = SFmode;
+        mode = DFmode;
       r = REAL_VALUE_ATOF (strings_68881[i], mode);
       values_68881[i] = r;
     }