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
5310566c
Commit
5310566c
authored
Jan 29, 1999
by
J"orn Rennecke
Committed by
Joern Rennecke
Jan 29, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* loop.c (recombine_givs): Don't try to derive givs that have combined.
From-SVN: r24906
parent
96df87b8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
7 deletions
+8
-7
gcc/ChangeLog
+4
-0
gcc/loop.c
+4
-7
No files found.
gcc/ChangeLog
View file @
5310566c
Fri
Jan
29
22
:
34
:
41
1999
J
"orn Rennecke <amylaar@cygnus.co.uk>
* loop.c (recombine_givs): Don't try to derive givs that have combined.
Fri Jan 29 15:00:39 1999 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
Fri Jan 29 15:00:39 1999 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* toplev.c (notice, fnotice): Check ANSI_PROTOTYPES, not __STDC__,
* toplev.c (notice, fnotice): Check ANSI_PROTOTYPES, not __STDC__,
...
...
gcc/loop.c
View file @
5310566c
...
@@ -7272,16 +7272,13 @@ recombine_givs (bl, loop_start, loop_end, unroll_p)
...
@@ -7272,16 +7272,13 @@ recombine_givs (bl, loop_start, loop_end, unroll_p)
rtx
sum
;
rtx
sum
;
v
=
giv_array
[
stats
[
i
].
giv_number
];
v
=
giv_array
[
stats
[
i
].
giv_number
];
if
(
v
->
giv_type
!=
DEST_REG
||
v
->
derived
)
if
(
v
->
giv_type
!=
DEST_REG
||
v
->
derived
||
v
->
same
)
continue
;
continue
;
if
(
!
last_giv
)
if
(
!
last_giv
)
{
{
if
(
!
v
->
same
)
last_giv
=
v
;
{
life_start
=
stats
[
i
].
start_luid
;
last_giv
=
v
;
life_end
=
stats
[
i
].
end_luid
;
life_start
=
stats
[
i
].
start_luid
;
life_end
=
stats
[
i
].
end_luid
;
}
continue
;
continue
;
}
}
/* Use unsigned arithmetic to model loop wrap around. */
/* Use unsigned arithmetic to model loop wrap around. */
...
...
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