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
6782074d
Commit
6782074d
authored
Oct 16, 1994
by
Richard Earnshaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(add_insn_{before,after}): Don't abort if AFTER was deleted, but not
optiimzing From-SVN: r8281
parent
13306d4f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
gcc/emit-rtl.c
+2
-2
No files found.
gcc/emit-rtl.c
View file @
6782074d
...
@@ -2141,7 +2141,7 @@ add_insn_after (insn, after)
...
@@ -2141,7 +2141,7 @@ add_insn_after (insn, after)
{
{
rtx
next
=
NEXT_INSN
(
after
);
rtx
next
=
NEXT_INSN
(
after
);
if
(
INSN_DELETED_P
(
after
))
if
(
optimize
&&
INSN_DELETED_P
(
after
))
abort
();
abort
();
NEXT_INSN
(
insn
)
=
next
;
NEXT_INSN
(
insn
)
=
next
;
...
@@ -2189,7 +2189,7 @@ add_insn_before (insn, before)
...
@@ -2189,7 +2189,7 @@ add_insn_before (insn, before)
{
{
rtx
prev
=
PREV_INSN
(
before
);
rtx
prev
=
PREV_INSN
(
before
);
if
(
INSN_DELETED_P
(
before
))
if
(
optimize
&&
INSN_DELETED_P
(
before
))
abort
();
abort
();
PREV_INSN
(
insn
)
=
prev
;
PREV_INSN
(
insn
)
=
prev
;
...
...
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