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
c6ce0969
Commit
c6ce0969
authored
Jun 23, 1992
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(print_operand): For '*', only annul branch if optimizing, to avoid dbx bug.
Add '(' to handle unoptimized case. From-SVN: r1247
parent
a4faa7cc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
3 deletions
+12
-3
gcc/config/sparc/sparc.c
+12
-3
No files found.
gcc/config/sparc/sparc.c
View file @
c6ce0969
...
...
@@ -2708,9 +2708,18 @@ print_operand (file, x, code)
fputs
(
"
\n\t
nop"
,
file
);
return
;
case
'*'
:
/* Output an annul flag if there's nothing for the delay slot. */
if
(
dbr_sequence_length
()
==
0
)
fputs
(
",a"
,
file
);
/* Output an annul flag if there's nothing for the delay slot and we
are optimizing. This is always used with '(' below. */
/* Sun OS 4.1.1 dbx can't handle an annulled unconditional branch;
this is a dbx bug. So, we only do this when optimizing. */
if
(
dbr_sequence_length
()
==
0
&&
optimize
)
fputs
(
",a"
,
file
);
return
;
case
'('
:
/* Output a 'nop' if there's nothing for the delay slot and we are
not optimizing. This is always used with '*' above. */
if
(
dbr_sequence_length
()
==
0
&&
!
optimize
)
fputs
(
"
\n\t
nop"
,
file
);
return
;
case
'Y'
:
/* Adjust the operand to take into account a RESTORE operation. */
...
...
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