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
8ad52449
Commit
8ad52449
authored
Mar 10, 2000
by
Richard Henderson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typo last change.
From-SVN: r32472
parent
bee249aa
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
gcc/except.c
+2
-2
gcc/flow.c
+2
-2
No files found.
gcc/except.c
View file @
8ad52449
...
...
@@ -2629,7 +2629,7 @@ can_throw (insn)
if
(
GET_CODE
(
insn
)
==
CALL_INSN
)
{
rtx
note
=
find_reg_note
(
insn
,
REG_EH_REGION
,
NULL_RTX
);
if
(
!
note
||
INTVAL
(
XEXP
(
note
,
0
)
,
0
)
>
0
)
if
(
!
note
||
INTVAL
(
XEXP
(
note
,
0
))
>
0
)
return
1
;
}
...
...
@@ -3390,7 +3390,7 @@ reachable_handlers (block, info, insn, handlers)
note
=
find_reg_note
(
insn
,
REG_EH_REGION
,
NULL_RTX
);
if
(
note
)
{
int
b
=
INTVAL
(
XEXP
(
note
,
0
)
,
0
);
int
b
=
INTVAL
(
XEXP
(
note
,
0
));
if
(
b
<=
0
)
index
=
0
;
else
...
...
gcc/flow.c
View file @
8ad52449
...
...
@@ -466,7 +466,7 @@ count_basic_blocks (f)
if
(
code
==
CALL_INSN
)
{
rtx
note
=
find_reg_note
(
insn
,
REG_EH_REGION
,
NULL_RTX
);
int
region
=
(
note
?
INTVAL
(
XEXP
(
note
,
0
)
,
0
)
:
1
);
int
region
=
(
note
?
INTVAL
(
XEXP
(
note
,
0
))
:
1
);
prev_call
=
insn
;
call_had_abnormal_edge
=
0
;
...
...
@@ -540,7 +540,7 @@ find_basic_blocks_1 (f)
{
/* Record whether this call created an edge. */
rtx
note
=
find_reg_note
(
insn
,
REG_EH_REGION
,
NULL_RTX
);
int
region
=
(
note
?
INTVAL
(
XEXP
(
note
,
0
)
,
0
)
:
1
);
int
region
=
(
note
?
INTVAL
(
XEXP
(
note
,
0
))
:
1
);
call_has_abnormal_edge
=
0
;
/* If there is an EH region or rethrow, we have an edge. */
...
...
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