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
21e3a717
Commit
21e3a717
authored
Aug 26, 1999
by
Bernd Schmidt
Committed by
Bernd Schmidt
Aug 26, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ignore no-ops in cprop pass.
From-SVN: r28901
parent
49b1e9eb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletions
+9
-1
gcc/ChangeLog
+4
-0
gcc/gcse.c
+5
-1
No files found.
gcc/ChangeLog
View file @
21e3a717
Thu
Aug
26
18
:
32
:
32
1999
Bernd
Schmidt
<
bernds
@cygnus
.
co
.
uk
>
*
gcse
.
c
(
hash_scan_insn
)
:
Don
'
t
scan
obvious
no
-
ops
.
1999
-
08
-
26
09
:
42
-
0700
Zack
Weinberg
<
zack
@bitmover
.
com
>
*
tree
.
h
:
fancy_abort
always
takes
three
args
.
...
...
gcc/gcse.c
View file @
21e3a717
...
...
@@ -1919,7 +1919,11 @@ hash_scan_insn (insn, set_p, in_libcall_block)
what's been modified. */
if
(
GET_CODE
(
pat
)
==
SET
&&
!
in_libcall_block
)
hash_scan_set
(
pat
,
insn
,
set_p
);
{
/* Ignore obvious no-ops. */
if
(
SET_SRC
(
pat
)
!=
SET_DEST
(
pat
))
hash_scan_set
(
pat
,
insn
,
set_p
);
}
else
if
(
GET_CODE
(
pat
)
==
PARALLEL
)
{
int
i
;
...
...
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