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
4c936d4f
Commit
4c936d4f
authored
Mar 30, 2009
by
Jan Hubicka
Committed by
Jan Hubicka
Mar 30, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* except.c (label_to_region_map): Fix thinko.
From-SVN: r145304
parent
f4d9f129
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
5 deletions
+6
-5
gcc/ChangeLog
+4
-0
gcc/except.c
+2
-5
No files found.
gcc/ChangeLog
View file @
4c936d4f
2009-03-30 Jan Hubicka <jh@suse.cz>
* except.c (label_to_region_map): Fix thinko.
2009-03-30 Steve Ellcey <sje@cup.hp.com>
PR middle-end/38237
...
...
gcc/except.c
View file @
4c936d4f
...
...
@@ -798,12 +798,9 @@ label_to_region_map (void)
for
(
i
=
cfun
->
eh
->
last_region_number
;
i
>
0
;
--
i
)
{
struct
eh_region
*
r
=
VEC_index
(
eh_region
,
cfun
->
eh
->
region_array
,
i
);
if
(
r
&&
r
->
tree_label
&&
LABEL_DECL_UID
(
r
->
tree_label
)
>=
0
)
if
(
r
&&
r
->
region_number
==
i
&&
r
->
tree_label
&&
LABEL_DECL_UID
(
r
->
tree_label
)
>=
0
)
{
if
((
unsigned
)
LABEL_DECL_UID
(
r
->
tree_label
)
>
VEC_length
(
int
,
label_to_region
))
VEC_safe_grow_cleared
(
int
,
heap
,
label_to_region
,
LABEL_DECL_UID
(
r
->
tree_label
));
VEC_replace
(
int
,
label_to_region
,
LABEL_DECL_UID
(
r
->
tree_label
),
i
);
}
...
...
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