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
27114460
Commit
27114460
authored
Dec 16, 1999
by
Richard Henderson
Committed by
Jeff Law
Dec 16, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* loop.c (insert_loop_mem): Ignore memory clobbers.
From-SVN: r30973
parent
4cbfbb1b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
gcc/ChangeLog
+2
-0
gcc/loop.c
+4
-0
No files found.
gcc/ChangeLog
View file @
27114460
...
@@ -6,6 +6,8 @@ Thu Dec 16 10:43:35 MET 1999 Jan Hubicka <hubicka@freesoft.cz>
...
@@ -6,6 +6,8 @@ Thu Dec 16 10:43:35 MET 1999 Jan Hubicka <hubicka@freesoft.cz>
Thu
Dec
16
02
:
41
:
26
1999
Richard
Henderson
(
rth
@cygnus
.
com
)
Thu
Dec
16
02
:
41
:
26
1999
Richard
Henderson
(
rth
@cygnus
.
com
)
*
loop
.
c
(
insert_loop_mem
)
:
Ignore
memory
clobbers
.
*
combine
.
c
(
simplify_comparison
)
:
Reduce
(
OP
(
MINUS
A
B
)
0
)
*
combine
.
c
(
simplify_comparison
)
:
Reduce
(
OP
(
MINUS
A
B
)
0
)
to
(
OP
A
B
).
to
(
OP
A
B
).
...
...
gcc/loop.c
View file @
27114460
...
@@ -9643,6 +9643,10 @@ insert_loop_mem (mem, data)
...
@@ -9643,6 +9643,10 @@ insert_loop_mem (mem, data)
case
MEM
:
case
MEM
:
break
;
break
;
case
CLOBBER
:
/* We're not interested in MEMs that are only clobbered. */
return
-
1
;
case
CONST_DOUBLE
:
case
CONST_DOUBLE
:
/* We're not interested in the MEM associated with a
/* We're not interested in the MEM associated with a
CONST_DOUBLE, so there's no need to traverse into this. */
CONST_DOUBLE, so there's no need to traverse into this. */
...
...
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