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
86147f48
Commit
86147f48
authored
Dec 17, 1998
by
J"orn Rennecke
Committed by
Joern Rennecke
Dec 17, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* loop.c (combine_givs_used_by_other): Don't depend on n_times_set.
From-SVN: r24351
parent
f8670be1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
gcc/ChangeLog
+4
-0
gcc/loop.c
+0
-4
No files found.
gcc/ChangeLog
View file @
86147f48
Thu
Dec
17
08
:
27
:
03
1998
J
"orn Rennecke <amylaar@cygnus.co.uk>
* loop.c (combine_givs_used_by_other): Don't depend on n_times_set.
Wed Dec 16 17:30:35 1998 Nick Clifton <nickc@cygnus.com>
Wed Dec 16 17:30:35 1998 Nick Clifton <nickc@cygnus.com>
* toplev.c (main): Disable optimize_size if a specific
* toplev.c (main): Disable optimize_size if a specific
...
...
gcc/loop.c
View file @
86147f48
...
@@ -6305,15 +6305,11 @@ static int
...
@@ -6305,15 +6305,11 @@ static int
combine_givs_used_by_other
(
g1
,
g2
)
combine_givs_used_by_other
(
g1
,
g2
)
struct
induction
*
g1
,
*
g2
;
struct
induction
*
g1
,
*
g2
;
{
{
/* Lines marked with ??? test a condition that wasn't meant to be tested
and should be deleted. */
if
(
g1
->
giv_type
==
DEST_REG
if
(
g1
->
giv_type
==
DEST_REG
&&
VARRAY_INT
(
n_times_set
,
REGNO
(
g1
->
dest_reg
))
==
1
/* ??? */
&&
reg_mentioned_p
(
g1
->
dest_reg
,
PATTERN
(
g2
->
insn
)))
&&
reg_mentioned_p
(
g1
->
dest_reg
,
PATTERN
(
g2
->
insn
)))
return
-
1
;
return
-
1
;
if
(
g2
->
giv_type
==
DEST_REG
if
(
g2
->
giv_type
==
DEST_REG
&&
VARRAY_INT
(
n_times_set
,
REGNO
(
g2
->
dest_reg
))
==
1
/* ??? */
&&
reg_mentioned_p
(
g2
->
dest_reg
,
PATTERN
(
g1
->
insn
)))
&&
reg_mentioned_p
(
g2
->
dest_reg
,
PATTERN
(
g1
->
insn
)))
return
1
;
return
1
;
...
...
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