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
635a2a90
Commit
635a2a90
authored
Sep 12, 2000
by
Michael Hayes
Committed by
Michael Hayes
Sep 12, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* loop.c (note_set_pseudo_multiple_uses): Correct.
From-SVN: r36375
parent
15f41525
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
gcc/ChangeLog
+4
-0
gcc/loop.c
+2
-3
No files found.
gcc/ChangeLog
View file @
635a2a90
2000-09-13 Michael Hayes <mhayes@cygnus.com>
2000-09-12 Jim Wilson <wilson@cygnus.com>
* ifcvt.c (noce_process_if_block): If A and B are the same, and no
...
...
gcc/loop.c
View file @
635a2a90
...
...
@@ -3069,8 +3069,7 @@ note_addr_stored (x, y, data)
/* X is a value modified by an INSN that references a biv inside a loop
exit test (ie, X is somehow related to the value of the biv). If X
is a pseudo that is used more than once, then the biv is (effectively)
used more than once. DATA is really an `int *', and is set if the
biv is used more than once. */
used more than once. DATA is a pointer to a loop_regs structure. */
static
void
note_set_pseudo_multiple_uses
(
x
,
y
,
data
)
...
...
@@ -3097,7 +3096,7 @@ note_set_pseudo_multiple_uses (x, y, data)
if
(
REGNO
(
x
)
>=
max_reg_before_loop
||
!
VARRAY_RTX
(
regs
->
single_usage
,
REGNO
(
x
))
||
VARRAY_RTX
(
regs
->
single_usage
,
REGNO
(
x
))
==
const0_rtx
)
*
((
int
*
)
data
)
=
1
;
regs
->
multiple_uses
=
1
;
}
/* Return nonzero if the rtx X is invariant over the current loop.
...
...
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