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
4cf37b4a
Commit
4cf37b4a
authored
Dec 15, 2000
by
J"orn Rennecke
Committed by
Joern Rennecke
Dec 15, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* haifa-sched.c (sched_init): Don't put a note in front of any BARRIER.
From-SVN: r38267
parent
edac124d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
gcc/ChangeLog
+4
-0
gcc/haifa-sched.c
+2
-4
No files found.
gcc/ChangeLog
View file @
4cf37b4a
Fri Dec 15 03:37:51 2000 J"orn Rennecke <amylaar@redhat.com>
* haifa-sched.c (sched_init): Don't put a note in front of any BARRIER.
2000-12-14 Jim Wilson <wilson@redhat.com>
* alias.c (get_alias_set): Call record_component_aliases for
...
...
gcc/haifa-sched.c
View file @
4cf37b4a
...
...
@@ -1955,10 +1955,8 @@ sched_init (dump_file)
if
(
NEXT_INSN
(
insn
)
==
0
||
(
GET_CODE
(
insn
)
!=
NOTE
&&
GET_CODE
(
insn
)
!=
CODE_LABEL
/* Don't emit a NOTE if it would end up between an unconditional
jump and a BARRIER. */
&&
!
(
GET_CODE
(
insn
)
==
JUMP_INSN
&&
GET_CODE
(
NEXT_INSN
(
insn
))
==
BARRIER
)))
/* Don't emit a NOTE if it would end up before a BARRIER. */
&&
GET_CODE
(
NEXT_INSN
(
insn
))
!=
BARRIER
))
emit_note_after
(
NOTE_INSN_DELETED
,
BLOCK_END
(
n_basic_blocks
-
1
));
/* Compute INSN_REG_WEIGHT for all blocks. We must do this before
...
...
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