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
9b40e174
Commit
9b40e174
authored
Jul 09, 1993
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(ASM_OUTPUT_OPCODE): Don't add .w suffix to jump insns.
From-SVN: r4885
parent
9c3b4c8b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
+2
-1
gcc/config/m68k/mot3300.h
+2
-1
No files found.
gcc/config/m68k/mot3300.h
View file @
9b40e174
...
@@ -674,13 +674,14 @@ int switch_table_difference_label_flag;
...
@@ -674,13 +674,14 @@ int switch_table_difference_label_flag;
#define SWITCH_JUMP_MATCH "jmp 6(%%pc,"
#define SWITCH_JUMP_MATCH "jmp 6(%%pc,"
/* cliffm@netcom.com says no need for .w suffix on jumps. */
#undef ASM_OUTPUT_OPCODE
#undef ASM_OUTPUT_OPCODE
#define ASM_OUTPUT_OPCODE(FILE, PTR) \
#define ASM_OUTPUT_OPCODE(FILE, PTR) \
{ if ((PTR)[0] == 'j' && (PTR)[1] == 'b') \
{ if ((PTR)[0] == 'j' && (PTR)[1] == 'b') \
{ ++(PTR); \
{ ++(PTR); \
while (*(PTR) != ' ') \
while (*(PTR) != ' ') \
{ putc (*(PTR), (FILE)); ++(PTR); } \
{ putc (*(PTR), (FILE)); ++(PTR); } \
fprintf ((FILE), ".w"); }
\
}
\
else if ((PTR)[0] == 's') \
else if ((PTR)[0] == 's') \
{ \
{ \
if (!strncmp ((PTR), "swap", 4)) \
if (!strncmp ((PTR), "swap", 4)) \
...
...
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