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
09d65479
Commit
09d65479
authored
Jun 12, 1993
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(add_dependence): Reject CODE_LABELs when searching for
last insn of a sched group. From-SVN: r4667
parent
785e6a26
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletions
+6
-1
gcc/sched.c
+6
-1
No files found.
gcc/sched.c
View file @
09d65479
...
...
@@ -844,7 +844,12 @@ add_dependence (insn, elem, dep_type)
{
/* Notes will never intervene here though, so don't bother checking
for them. */
while
(
NEXT_INSN
(
next
)
&&
SCHED_GROUP_P
(
NEXT_INSN
(
next
)))
/* We must reject CODE_LABELs, so that we don't get confused by one
that has LABEL_PRESERVE_P set, which is represented by the same
bit in the rtl as SCHED_GROUP_P. A CODE_LABEL can never be
SCHED_GROUP_P. */
while
(
NEXT_INSN
(
next
)
&&
SCHED_GROUP_P
(
NEXT_INSN
(
next
))
&&
GET_CODE
(
NEXT_INSN
(
next
))
!=
CODE_LABEL
)
next
=
NEXT_INSN
(
next
);
/* Again, don't depend an insn on itself. */
...
...
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