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
baf8706c
Commit
baf8706c
authored
May 27, 2004
by
Jan Hubicka
Committed by
Jan Hubicka
May 27, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* cfgbuild.c (control_flow_insn_p): Notice noreturn call
From-SVN: r82321
parent
63645982
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
gcc/ChangeLog
+4
-0
gcc/cfgbuild.c
+6
-0
No files found.
gcc/ChangeLog
View file @
baf8706c
2004-05-27 Jan Hubicka <jh@suse.cz>
* cfgbuild.c (control_flow_insn_p): Notice noreturn call
2004-05-25 Paolo Bonzini <bonzini@gnu.org>
2004-05-25 Paolo Bonzini <bonzini@gnu.org>
* combine.c (gen_binary): Remove.
* combine.c (gen_binary): Remove.
...
...
gcc/cfgbuild.c
View file @
baf8706c
...
@@ -108,6 +108,12 @@ control_flow_insn_p (rtx insn)
...
@@ -108,6 +108,12 @@ control_flow_insn_p (rtx insn)
&&
GET_CODE
(
PATTERN
(
insn
))
!=
ADDR_DIFF_VEC
);
&&
GET_CODE
(
PATTERN
(
insn
))
!=
ADDR_DIFF_VEC
);
case
CALL_INSN
:
case
CALL_INSN
:
/* Noreturn and sibling call instructions terminate the basic blocks
(but only if they happen unconditionally). */
if
((
SIBLING_CALL_P
(
insn
)
||
find_reg_note
(
insn
,
REG_NORETURN
,
0
))
&&
GET_CODE
(
PATTERN
(
insn
))
!=
COND_EXEC
)
return
true
;
/* Call insn may return to the nonlocal goto handler. */
/* Call insn may return to the nonlocal goto handler. */
return
((
nonlocal_goto_handler_labels
return
((
nonlocal_goto_handler_labels
&&
(
0
==
(
note
=
find_reg_note
(
insn
,
REG_EH_REGION
,
&&
(
0
==
(
note
=
find_reg_note
(
insn
,
REG_EH_REGION
,
...
...
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