Commit 16d82c3c by Richard Kenner

(init_68881_table): Use SFmode for the first six constants and DFmode

for the seventh.

From-SVN: r11137
parent 9049a716
/* 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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment