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
7bd5ed5c
Commit
7bd5ed5c
authored
Jul 17, 2004
by
Graham Stott
Committed by
Graham Stott
Jul 17, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* emit-rtl.c (reorder_insns): Don't set BB for a BARRIER insn.
From-SVN: r84871
parent
1792f52d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletions
+6
-1
gcc/ChangeLog
+4
-0
gcc/emit-rtl.c
+2
-1
No files found.
gcc/ChangeLog
View file @
7bd5ed5c
2004-07-17 Graham Stott <graham.stott@btinternet.com>
* emit-rtl.c (reorder_insns): Don't set BB for a BARRIER insn.
2004-07-17 Toon Moene <toon@moene.indiv.nluug.nl>
* doc/sourcebuild.texi: Remove libf2c entry.
...
...
gcc/emit-rtl.c
View file @
7bd5ed5c
...
...
@@ -3790,7 +3790,8 @@ reorder_insns (rtx from, rtx to, rtx after)
BB_END
(
bb
)
=
to
;
for
(
x
=
from
;
x
!=
NEXT_INSN
(
to
);
x
=
NEXT_INSN
(
x
))
set_block_for_insn
(
x
,
bb
);
if
(
!
BARRIER_P
(
x
))
set_block_for_insn
(
x
,
bb
);
}
}
...
...
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