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
a61bf177
Commit
a61bf177
authored
Mar 07, 2004
by
Jan Hubicka
Committed by
Jan Hubicka
Mar 07, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* except.c (emit_to_new_bb_before): Break fallthru edges.
From-SVN: r79071
parent
17c60946
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
gcc/ChangeLog
+4
-0
gcc/except.c
+7
-0
No files found.
gcc/ChangeLog
View file @
a61bf177
2004-03-07 Jan Hubicka <jh@suse.cz>
* except.c (emit_to_new_bb_before): Break fallthru edges.
2004-03-07 Stephane Carrez <stcarrez@nerim.fr>
* config/m68hc11/m68hc11.md ("*lshrsi3_const"): Disable for 68HC12.
...
...
gcc/except.c
View file @
a61bf177
...
...
@@ -1637,7 +1637,14 @@ emit_to_new_bb_before (rtx seq, rtx insn)
{
rtx
last
;
basic_block
bb
;
edge
e
;
/* If there happens to be an fallthru edge (possibly created by cleanup_cfg
call), we don't want it to go into newly created landing pad or other EH
construct. */
for
(
e
=
BLOCK_FOR_INSN
(
insn
)
->
pred
;
e
;
e
=
e
->
pred_next
)
if
(
e
->
flags
&
EDGE_FALLTHRU
)
force_nonfallthru
(
e
);
last
=
emit_insn_before
(
seq
,
insn
);
if
(
GET_CODE
(
last
)
==
BARRIER
)
last
=
PREV_INSN
(
last
);
...
...
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