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
0c4992b0
Commit
0c4992b0
authored
Sep 02, 2001
by
Jan Hubicka
Committed by
Jan Hubicka
Sep 02, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* reload1.c (fixup_abnormal_edges): Allow NOTEs in the sequence.
From-SVN: r45358
parent
303e4ccf
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
4 deletions
+11
-4
gcc/ChangeLog
+4
-0
gcc/reload1.c
+7
-4
No files found.
gcc/ChangeLog
View file @
0c4992b0
Sun
Sep
2
18
:
37
:
54
CEST
2001
Jan
Hubicka
<
jh
@suse
.
cz
>
*
reload1
.
c
(
fixup_abnormal_edges
)
:
Allow
NOTEs
in
the
sequence
.
2001
-
09
-
01
Geoffrey
Keating
<
geoffk
@redhat
.
com
>
*
expr
.
c
(
push_block
)
:
Make
sane
use
of
STACK_GROWS_DOWNWARD
.
...
...
gcc/reload1.c
View file @
0c4992b0
...
...
@@ -9497,7 +9497,7 @@ fixup_abnormal_edges ()
}
if
(
e
&&
GET_CODE
(
bb
->
end
)
!=
CALL_INSN
&&
!
can_throw_internal
(
bb
->
end
))
{
rtx
insn
=
bb
->
end
;
rtx
insn
=
bb
->
end
,
stop
=
NEXT_INSN
(
bb
->
end
)
;
rtx
next
;
for
(
e
=
bb
->
succ
;
e
;
e
=
e
->
succ_next
)
if
(
e
->
flags
&
EDGE_FALLTHRU
)
...
...
@@ -9513,11 +9513,14 @@ fixup_abnormal_edges ()
bb
->
end
=
insn
;
inserted
=
true
;
insn
=
NEXT_INSN
(
insn
);
while
(
insn
&&
GET_CODE
(
insn
)
==
INSN
)
while
(
insn
&&
insn
!=
stop
)
{
next
=
NEXT_INSN
(
insn
);
insert_insn_on_edge
(
PATTERN
(
insn
),
e
);
flow_delete_insn
(
insn
);
if
(
INSN_P
(
insn
))
{
insert_insn_on_edge
(
PATTERN
(
insn
),
e
);
flow_delete_insn
(
insn
);
}
insn
=
next
;
}
}
...
...
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