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
885cde01
Commit
885cde01
authored
Nov 09, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(final_biv_value): Make a note after loop_end
if we need to use NEXT_INSN (loop_end). From-SVN: r2725
parent
e26154aa
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
gcc/unroll.c
+3
-0
No files found.
gcc/unroll.c
View file @
885cde01
...
@@ -2797,6 +2797,9 @@ final_biv_value (bl, loop_start, loop_end)
...
@@ -2797,6 +2797,9 @@ final_biv_value (bl, loop_start, loop_end)
case it is needed later. */
case it is needed later. */
tem
=
gen_reg_rtx
(
bl
->
biv
->
mode
);
tem
=
gen_reg_rtx
(
bl
->
biv
->
mode
);
/* Make sure loop_end is not the last insn. */
if
(
NEXT_INSN
(
loop_end
)
==
0
)
emit_note_after
(
NOTE_INSN_DELETED
,
loop_end
);
emit_iv_add_mult
(
increment
,
GEN_INT
(
loop_n_iterations
),
emit_iv_add_mult
(
increment
,
GEN_INT
(
loop_n_iterations
),
bl
->
initial_value
,
tem
,
NEXT_INSN
(
loop_end
));
bl
->
initial_value
,
tem
,
NEXT_INSN
(
loop_end
));
...
...
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