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
e0a09fda
Commit
e0a09fda
authored
May 21, 2002
by
Krister Walfridsson
Committed by
Richard Henderson
May 20, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* reload1.c (reload_cse_simplify): Fix typo in rtx code check.
From-SVN: r53675
parent
e0c13c70
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
gcc/ChangeLog
+4
-0
gcc/reload1.c
+2
-2
No files found.
gcc/ChangeLog
View file @
e0a09fda
2002-05-20 Krister Walfridsson <cato@df.lth.se>
* reload1.c (reload_cse_simplify): Fix typo in rtx code check.
2002-05-20 H.J. Lu (hjl@gnu.org)
Base on suggestions from Zhang Fuxin <fxzhang@ict.ac.cn>:
...
...
gcc/reload1.c
View file @
e0a09fda
...
...
@@ -8077,8 +8077,8 @@ reload_cse_simplify (insn)
if
(
!
count
&&
reload_cse_noop_set_p
(
body
))
{
rtx
value
=
SET_DEST
(
body
);
if
(
GET_CODE
(
body
)
==
REG
&&
!
REG_FUNCTION_VALUE_P
(
SET_DEST
(
body
)
))
if
(
REG_P
(
value
)
&&
!
REG_FUNCTION_VALUE_P
(
value
))
value
=
0
;
reload_cse_delete_noop_set
(
insn
,
value
);
return
;
...
...
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