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
22422dbf
Commit
22422dbf
authored
Jul 29, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r1709
parent
cfd6bb3d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
gcc/reorg.c
+3
-3
No files found.
gcc/reorg.c
View file @
22422dbf
...
...
@@ -2923,7 +2923,7 @@ fill_slots_from_thread (insn, condition, thread, opposite_thread, likely,
if
(
new_thread
&&
GET_CODE
(
new_thread
)
==
JUMP_INSN
&&
(
simplejump_p
(
new_thread
)
||
GET_CODE
(
PATTERN
(
new_thread
))
==
RETURN
))
new_thread
=
follow_jumps
(
JUMP_LABEL
(
new_thread
)
,
1
);
new_thread
=
follow_jumps
(
JUMP_LABEL
(
new_thread
));
if
(
new_thread
==
0
)
label
=
find_end_label
();
...
...
@@ -3084,7 +3084,7 @@ relax_delay_slots (first)
if
(
GET_CODE
(
insn
)
==
JUMP_INSN
&&
(
target_label
=
JUMP_LABEL
(
insn
))
!=
0
)
{
target_label
=
follow_jumps
(
target_label
,
1
);
target_label
=
follow_jumps
(
target_label
);
target_label
=
prev_label
(
next_active_insn
(
target_label
));
if
(
target_label
==
0
)
...
...
@@ -3196,7 +3196,7 @@ relax_delay_slots (first)
{
/* If this jump goes to another unconditional jump, thread it, but
don't convert a jump into a RETURN here. */
trial
=
follow_jumps
(
target_label
,
1
);
trial
=
follow_jumps
(
target_label
);
trial
=
prev_label
(
next_active_insn
(
trial
));
if
(
trial
==
0
&&
target_label
!=
0
)
trial
=
find_end_label
();
...
...
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