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
0e690bdb
Commit
0e690bdb
authored
Mar 11, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r431
parent
0310ba22
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletions
+10
-1
gcc/jump.c
+10
-1
No files found.
gcc/jump.c
View file @
0e690bdb
...
...
@@ -1416,6 +1416,15 @@ jump_optimize (f, cross_jump, noop_moves, after_regscan)
rtx
range1after
,
range2after
;
rtx
range1before
,
range2before
;
/* Include in each range any line number before it. */
while
(
PREV_INSN
(
range1beg
)
&&
GET_CODE
(
PREV_INSN
(
range1beg
))
==
NOTE
)
range1beg
=
PREV_INSN
(
range1beg
);
while
(
PREV_INSN
(
range2beg
)
&&
GET_CODE
(
PREV_INSN
(
range2beg
))
==
NOTE
)
range2beg
=
PREV_INSN
(
range2beg
);
/* Don't move NOTEs for blocks or loops; shift them
outside the ranges, where they'll stay put. */
squeeze_notes
(
range1beg
,
range1end
);
...
...
@@ -2666,7 +2675,7 @@ mark_jump_label (x, insn, cross_jump)
{
if
(
GET_CODE
(
insn
)
==
JUMP_INSN
)
JUMP_LABEL
(
insn
)
=
label
;
else
if
(
!
find_reg_note
(
insn
,
REG_LABEL
,
0
))
else
if
(
!
find_reg_note
(
insn
,
REG_LABEL
,
label
))
{
rtx
next
=
next_real_insn
(
label
);
/* Don't record labels that refer to dispatch tables.
...
...
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