Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
16d82c3c
Commit
16d82c3c
authored
Jan 31, 1996
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(init_68881_table): Use SFmode for the first six constants and DFmode
for the seventh. From-SVN: r11137
parent
9049a716
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
gcc/config/m68k/m68k.c
+3
-3
No files found.
gcc/config/m68k/m68k.c
View file @
16d82c3c
/* 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
=
D
Fmode
;
mode
=
S
Fmode
;
for
(
i
=
0
;
i
<
7
;
i
++
)
{
if
(
i
==
6
)
mode
=
S
Fmode
;
mode
=
D
Fmode
;
r
=
REAL_VALUE_ATOF
(
strings_68881
[
i
],
mode
);
values_68881
[
i
]
=
r
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment