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
1bcec223
Commit
1bcec223
authored
Dec 01, 2003
by
Ulrich Weigand
Committed by
Ulrich Weigand
Dec 01, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* unroll.c (find_splittable_givs): Add missing extend_value_for_giv.
From-SVN: r74126
parent
28cb2b14
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
gcc/ChangeLog
+4
-0
gcc/unroll.c
+3
-2
No files found.
gcc/ChangeLog
View file @
1bcec223
2003-12-01 Ulrich Weigand <uweigand@de.ibm.com>
* unroll.c (find_splittable_givs): Add missing extend_value_for_giv.
2003-12-01 Roger Sayle <roger@eyesopen.com>
PR optimization/12628
...
...
gcc/unroll.c
View file @
1bcec223
...
...
@@ -2797,8 +2797,9 @@ find_splittable_givs (const struct loop *loop, struct iv_class *bl,
{
rtx
tem
=
gen_reg_rtx
(
v
->
mode
);
record_base_value
(
REGNO
(
tem
),
v
->
add_val
,
0
);
loop_iv_add_mult_hoist
(
loop
,
bl
->
initial_value
,
v
->
mult_val
,
v
->
add_val
,
tem
);
loop_iv_add_mult_hoist
(
loop
,
extend_value_for_giv
(
v
,
bl
->
initial_value
),
v
->
mult_val
,
v
->
add_val
,
tem
);
value
=
tem
;
}
...
...
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