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
89ad2599
Commit
89ad2599
authored
Jul 11, 1994
by
Stan Cox
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(TARGET_SVR3): New target switch.
From-SVN: r7701
parent
1f29c913
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
gcc/config/m88k/m88k.h
+9
-2
No files found.
gcc/config/m88k/m88k.h
View file @
89ad2599
...
...
@@ -197,13 +197,13 @@ extern char * reg_names[];
Redefined in sysv4.h, and luna.h. */
#define VERSION_INFO1 "88open OCS/BCS, "
#ifndef VERSION_INFO2
#define VERSION_INFO2 "$Revision: 1.5
8
$"
#define VERSION_INFO2 "$Revision: 1.5
9
$"
#endif
#ifndef VERSION_STRING
#define VERSION_STRING version_string
#ifdef __STDC__
#define TM_RCS_ID "@(#)" __FILE__ " $Revision: 1.5
8
$ " __DATE__
#define TM_RCS_ID "@(#)" __FILE__ " $Revision: 1.5
9
$ " __DATE__
#else
#define TM_RCS_ID "$What$"
#endif
/* __STDC__ */
...
...
@@ -224,6 +224,7 @@ extern char * reg_names[];
#define MASK_OCS_DEBUG_INFO 0x00000004
/* Emit .tdesc info */
#define MASK_OCS_FRAME_POSITION 0x00000008
/* Debug frame = CFA, not r30 */
#define MASK_SVR4 0x00000010
/* Target is AT&T System V.4 */
#define MASK_SVR3 0x00000020
/* Target is AT&T System V.3 */
#define MASK_NO_UNDERSCORES 0x00000040
/* Don't emit a leading `_' */
#define MASK_BIG_PIC 0x00000080
/* PIC with large got-rel's -fPIC */
#define MASK_TRAP_LARGE_SHIFT 0x00000100
/* Trap if shift not <= 31 */
...
...
@@ -246,6 +247,7 @@ extern char * reg_names[];
#define TARGET_OCS_DEBUG_INFO (target_flags & MASK_OCS_DEBUG_INFO)
#define TARGET_OCS_FRAME_POSITION (target_flags & MASK_OCS_FRAME_POSITION)
#define TARGET_SVR4 (target_flags & MASK_SVR4)
#define TARGET_SVR3 (target_flags & MASK_SVR3)
#define TARGET_NO_UNDERSCORES (target_flags & MASK_NO_UNDERSCORES)
#define TARGET_BIG_PIC (target_flags & MASK_BIG_PIC)
#define TARGET_TRAP_LARGE_SHIFT (target_flags & MASK_TRAP_LARGE_SHIFT)
...
...
@@ -330,6 +332,11 @@ extern char * reg_names[];
reg_names[i]--; \
m88k_pound_sign = "#"; \
} \
else \
{ \
target_flags |= MASK_SVR3; \
target_flags &= ~MASK_SVR4; \
} \
\
if (m88k_short_data) \
{ \
...
...
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