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
2d2e7054
Commit
2d2e7054
authored
Nov 27, 1997
by
Jeff Law
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Grr. Used the wrong patchfile last time.
From-SVN: r16816
parent
586a5f99
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
1 deletions
+13
-1
gcc/flow.c
+13
-1
No files found.
gcc/flow.c
View file @
2d2e7054
...
...
@@ -574,7 +574,11 @@ find_basic_blocks (f, nonlocal_label_list)
associated insns aren't marked dead, so we make
the block in question live and create an edge from
this insn to the label. This is not strictly
correct, but it is close enough for now. */
correct, but it is close enough for now.
We also need to mark the CODE_LABEL as reaching
its exception handler for nested exceptions to
to work. */
for
(
note
=
REG_NOTES
(
insn
);
note
;
note
=
XEXP
(
note
,
1
))
...
...
@@ -586,6 +590,14 @@ find_basic_blocks (f, nonlocal_label_list)
mark_label_ref
(
gen_rtx
(
LABEL_REF
,
VOIDmode
,
x
),
insn
,
0
);
/* If the CODE_LABEL has an active exception
handler, then make an edge to the exception
handler from this insn. */
if
(
active_eh_handler
[
INSN_UID
(
x
)])
mark_label_ref
(
gen_rtx
(
LABEL_REF
,
VOIDmode
,
active_eh_handler
[
INSN_UID
(
x
)]),
insn
,
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