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
71cd4a8d
Commit
71cd4a8d
authored
Jan 20, 1995
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(delete_handlers): When clear LABEL_PRESERVE_P,
also remove label from nonlocal_label list. From-SVN: r8782
parent
275c7080
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
1 deletions
+19
-1
gcc/function.c
+19
-1
No files found.
gcc/function.c
View file @
71cd4a8d
...
...
@@ -2957,7 +2957,25 @@ delete_handlers ()
Also permit deletion of the nonlocal labels themselves
if nothing local refers to them. */
if
(
GET_CODE
(
insn
)
==
CODE_LABEL
)
LABEL_PRESERVE_P
(
insn
)
=
0
;
{
tree
t
,
last_t
;
LABEL_PRESERVE_P
(
insn
)
=
0
;
/* Remove it from the nonlocal_label list, to avoid confusing
flow. */
for
(
t
=
nonlocal_labels
,
last_t
=
0
;
t
;
last_t
=
t
,
t
=
TREE_CHAIN
(
t
))
if
(
DECL_RTL
(
TREE_VALUE
(
t
))
==
insn
)
break
;
if
(
t
)
{
if
(
!
last_t
)
nonlocal_labels
=
TREE_CHAIN
(
nonlocal_labels
);
else
TREE_CHAIN
(
last_t
)
=
TREE_CHAIN
(
t
);
}
}
if
(
GET_CODE
(
insn
)
==
INSN
&&
((
nonlocal_goto_handler_slot
!=
0
&&
reg_mentioned_p
(
nonlocal_goto_handler_slot
,
PATTERN
(
insn
)))
...
...
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