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
60845126
Commit
60845126
authored
Apr 23, 2005
by
Richard Henderson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert accidental commit.
From-SVN: r98632
parent
6800ea5c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
9 deletions
+3
-9
gcc/tree-eh.c
+3
-9
No files found.
gcc/tree-eh.c
View file @
60845126
...
@@ -1920,12 +1920,7 @@ tree_could_throw_p (tree t)
...
@@ -1920,12 +1920,7 @@ tree_could_throw_p (tree t)
bool
bool
tree_can_throw_internal
(
tree
stmt
)
tree_can_throw_internal
(
tree
stmt
)
{
{
int
region_nr
;
int
region_nr
=
lookup_stmt_eh_region
(
stmt
);
if
(
TREE_CODE
(
stmt
)
==
RESX_EXPR
)
region_nr
=
TREE_INT_CST_LOW
(
TREE_OPERAND
(
stmt
,
0
));
else
region_nr
=
lookup_stmt_eh_region
(
stmt
);
if
(
region_nr
<
0
)
if
(
region_nr
<
0
)
return
false
;
return
false
;
return
can_throw_internal_1
(
region_nr
);
return
can_throw_internal_1
(
region_nr
);
...
@@ -1936,9 +1931,8 @@ tree_can_throw_external (tree stmt)
...
@@ -1936,9 +1931,8 @@ tree_can_throw_external (tree stmt)
{
{
int
region_nr
=
lookup_stmt_eh_region
(
stmt
);
int
region_nr
=
lookup_stmt_eh_region
(
stmt
);
if
(
region_nr
<
0
)
if
(
region_nr
<
0
)
return
tree_could_throw_p
(
stmt
);
return
false
;
else
return
can_throw_external_1
(
region_nr
);
return
can_throw_external_1
(
region_nr
);
}
}
bool
bool
...
...
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