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
7ecb5d27
Commit
7ecb5d27
authored
May 19, 1998
by
Andrew MacLeod
Committed by
Andrew Macleod
May 19, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix logic on when to generate a new handler label
From-SVN: r19868
parent
487a6e06
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletions
+6
-1
gcc/ChangeLog
+5
-0
gcc/except.c
+1
-1
No files found.
gcc/ChangeLog
View file @
7ecb5d27
Tue May 19 11:51:00 EDT 1998 Andrew MacLeod (amacleod@cygnus.com)
* except.c (expand_start_catch): Correct logic for when to
generate a new handler label, and when to use the old one.
Tue May 19 11:08:52 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* Makefile.in (print-rtl.o): Depend on bitmap.h.
...
...
gcc/except.c
View file @
7ecb5d27
...
...
@@ -1491,7 +1491,7 @@ expand_start_catch (rtime)
int
eh_region_entry
=
find_func_region
(
insn_region_num
);
/* If we've already issued this label, pick a new one */
if
(
catchstack
.
top
->
entry
->
label_used
==
0
)
if
(
catchstack
.
top
->
entry
->
label_used
)
handler_label
=
gen_exception_label
();
else
catchstack
.
top
->
entry
->
label_used
=
1
;
...
...
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