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
36e9ee91
Commit
36e9ee91
authored
May 05, 1999
by
J"orn Rennecke
Committed by
Joern Rennecke
May 05, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* unroll.c (copy_loop_body): Don't copy VTOP notes from copy_notes_from.
From-SVN: r26786
parent
9096b279
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletions
+13
-1
gcc/ChangeLog
+4
-0
gcc/unroll.c
+9
-1
No files found.
gcc/ChangeLog
View file @
36e9ee91
Wed
May
5
23
:
44
:
15
1999
J
"orn Rennecke <amylaar@cygnus.co.uk>
* unroll.c (copy_loop_body): Don't copy VTOP notes from copy_notes_from.
Wed May 5 16:26:13 1999 Vladimir Makarov <vmakarov@tofu.to.cygnus.com>
* function.c (purge_addressof_replacements): Rename into
...
...
gcc/unroll.c
View file @
36e9ee91
...
...
@@ -2193,9 +2193,17 @@ copy_loop_body (copy_start, copy_end, map, exit_label, last_iteration,
{
for
(
insn
=
copy_notes_from
;
insn
!=
loop_end
;
insn
=
NEXT_INSN
(
insn
))
{
/* VTOP notes are valid only before the loop exit test.
If placed anywhere else, loop may generate bad code.
There is no need to test for NOTE_INSN_LOOP_CONT notes
here, since COPY_NOTES_FROM will be at most one or two (for cc0)
instructions before the last insn in the loop, and if the
end test is that short, there will be a VTOP note between
the CONT note and the test. */
if
(
GET_CODE
(
insn
)
==
NOTE
&&
NOTE_LINE_NUMBER
(
insn
)
!=
NOTE_INSN_DELETED
&&
NOTE_LINE_NUMBER
(
insn
)
!=
NOTE_INSN_BASIC_BLOCK
)
&&
NOTE_LINE_NUMBER
(
insn
)
!=
NOTE_INSN_BASIC_BLOCK
&&
NOTE_LINE_NUMBER
(
insn
)
!=
NOTE_INSN_LOOP_VTOP
)
emit_note
(
NOTE_SOURCE_FILE
(
insn
),
NOTE_LINE_NUMBER
(
insn
));
}
}
...
...
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