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
348affc3
Commit
348affc3
authored
Mar 26, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r588
parent
c114787a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
gcc/config/m68k/amix.h
+4
-0
gcc/config/m68k/m68k.md
+7
-0
No files found.
gcc/config/m68k/amix.h
View file @
348affc3
...
@@ -21,6 +21,10 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
...
@@ -21,6 +21,10 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "m68kv4.h"
#include "m68kv4.h"
/* Alter assembler syntax for fsgldiv. */
#define FSGLDIV_USE_S
/* Names to predefine in the preprocessor for this target machine. For the
/* Names to predefine in the preprocessor for this target machine. For the
Amiga, these definitions match those of the native AT&T compiler. Note
Amiga, these definitions match those of the native AT&T compiler. Note
that we override the definition in m68kv4.h, where SVR4 is defined and
that we override the definition in m68kv4.h, where SVR4 is defined and
...
...
gcc/config/m68k/m68k.md
View file @
348affc3
...
@@ -2665,10 +2665,17 @@
...
@@ -2665,10 +2665,17 @@
"TARGET_68881"
"TARGET_68881"
"
*
"
*
{
{
#ifdef FSGLDIV_USE_S
if (REG_P (operands
[
2
]
) && ! DATA_REG_P (operands
[
2
]
))
return (TARGET_68040_ONLY
?
\"
fsdiv%.s %2,%0
\"
:
\"
fsgldiv%.s %2,%0
\"
);
#else
if (REG_P (operands
[
2
]
) && ! DATA_REG_P (operands
[
2
]
))
if (REG_P (operands
[
2
]
) && ! DATA_REG_P (operands
[
2
]
))
return (TARGET_68040_ONLY
return (TARGET_68040_ONLY
?
\"
fsdiv%.x %2,%0
\"
?
\"
fsdiv%.x %2,%0
\"
:
\"
fsgldiv%.x %2,%0
\"
);
:
\"
fsgldiv%.x %2,%0
\"
);
#endif
return (TARGET_68040_ONLY
return (TARGET_68040_ONLY
?
\"
fsdiv%.s %f2,%0
\"
?
\"
fsdiv%.s %f2,%0
\"
:
\"
fsgldiv%.s %f2,%0
\"
);
:
\"
fsgldiv%.s %f2,%0
\"
);
...
...
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