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
705f26cf
Commit
705f26cf
authored
Jul 19, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
entered into RCS
From-SVN: r1627
parent
82d00367
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
gcc/jump.c
+6
-0
No files found.
gcc/jump.c
View file @
705f26cf
...
...
@@ -2744,6 +2744,9 @@ mark_jump_label (x, insn, cross_jump)
register
rtx
next
;
if
(
GET_CODE
(
label
)
!=
CODE_LABEL
)
abort
();
/* Ignore references to labels of containing functions. */
if
(
LABEL_REF_NONLOCAL_P
(
x
))
break
;
/* If there are other labels following this one,
replace it with the last of the consecutive labels. */
for
(
next
=
NEXT_INSN
(
label
);
next
;
next
=
NEXT_INSN
(
next
))
...
...
@@ -3490,6 +3493,9 @@ rtx_renumbered_equal_p (x, y)
return
XINT
(
x
,
0
)
==
XINT
(
y
,
0
);
case
LABEL_REF
:
/* We can't assume nonlocal labels have their following insns yet. */
if
(
LABEL_REF_NONLOCAL_P
(
x
)
||
LABEL_REF_NONLOCAL_P
(
y
))
return
XEXP
(
x
,
0
)
==
XEXP
(
y
,
0
);
/* Two label-refs are equivalent if they point at labels
in the same position in the instruction stream. */
return
(
next_real_insn
(
XEXP
(
x
,
0
))
...
...
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