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
30e6bc63
Commit
30e6bc63
authored
Feb 18, 1996
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(TARGET_68060): New macro.
(TARGET_SWITCHES): Add -m68060. From-SVN: r11295
parent
935531ca
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
7 deletions
+16
-7
gcc/config/m68k/m68k.h
+16
-7
No files found.
gcc/config/m68k/m68k.h
View file @
30e6bc63
...
...
@@ -90,9 +90,17 @@ extern int target_flags;
run on a 68030 and 68881/2. */
#define TARGET_68040 (target_flags & 01400)
/* Use the 68040-only fp instructions (-m68040). */
/* Use the 68040-only fp instructions (-m68040
or -m68060
). */
#define TARGET_68040_ONLY (target_flags & 01000)
/* Optimize for 68060, but still allow execution on 68020
(-m68060).
The 68060 will execute all 68030 and 68881/2 instructions, but some
of them must be emulated in software by the OS. When TARGET_68060 is
turned on, these instructions won't be used. This code will still
run on a 68030 and 68881/2. */
#define TARGET_68060 (target_flags & 02000)
/* Macro to define tables used to set the flags.
This is a list in braces of pairs in braces,
each pair being { "NAME", VALUE }
...
...
@@ -100,15 +108,15 @@ extern int target_flags;
An empty string NAME is used to identify the default VALUE. */
#define TARGET_SWITCHES \
{ { "68020", -0
1
400}, \
{ "c68020", -0
1
400}, \
{ { "68020", -0
3
400}, \
{ "c68020", -0
3
400}, \
{ "68020", 5}, \
{ "c68020", 5}, \
{ "68881", 2}, \
{ "bitfield", 4}, \
{ "68000", -0
1
405}, \
{ "c68000", -0
1
405}, \
{ "soft-float", -0
1
102}, \
{ "68000", -0
3
405}, \
{ "c68000", -0
3
405}, \
{ "soft-float", -0
3
102}, \
{ "nobitfield", -4}, \
{ "rtd", 8}, \
{ "nortd", -8}, \
...
...
@@ -119,9 +127,10 @@ extern int target_flags;
{ "sky", 0200}, \
{ "nosky", -0200}, \
{ "68020-40", 0407}, \
{ "68030", -0
1
400}, \
{ "68030", -0
3
400}, \
{ "68030", 5}, \
{ "68040", 01007}, \
{ "68060", 03007}, \
{ "68851", 0},
/* Affects *_SPEC and/or GAS. */
\
{ "no-68851", 0},
/* Affects *_SPEC and/or GAS. */
\
{ "68302", 0},
/* Affects *_SPEC and/or GAS. */
\
...
...
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