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
d5ae21aa
Commit
d5ae21aa
authored
Mar 12, 2001
by
Aldy Hernandez
Committed by
Aldy Hernandez
Mar 12, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Call reload_cse_simplify_set before reload_cse_noop_set_p
From-SVN: r40394
parent
190c4cb4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
4 deletions
+14
-4
gcc/ChangeLog
+5
-0
gcc/reload1.c
+9
-4
No files found.
gcc/ChangeLog
View file @
d5ae21aa
2001-03-12 Aldy Hernandez <aldyh@redhat.com>
* reload1.c (reload_cse_simplify): Call reload_cse_simplify_set
before reload_cse_noop_set_p.
2001-03-11 Zack Weinberg <zackw@stanford.edu>
* config.gcc: Where xm-host.h used to include another
...
...
gcc/reload1.c
View file @
d5ae21aa
...
...
@@ -8041,7 +8041,15 @@ reload_cse_simplify (insn)
if
(
GET_CODE
(
body
)
==
SET
)
{
int
count
=
0
;
if
(
reload_cse_noop_set_p
(
body
))
/* Simplify even if we may think it is a no-op.
We may think a memory load of a value smaller than WORD_SIZE
is redundant because we haven't taken into account possible
implicit extension. reload_cse_simplify_set() will bring
this out, so it's safer to simplify before we delete. */
count
+=
reload_cse_simplify_set
(
body
,
insn
);
if
(
!
count
&&
reload_cse_noop_set_p
(
body
))
{
rtx
value
=
SET_DEST
(
body
);
if
(
!
REG_FUNCTION_VALUE_P
(
SET_DEST
(
body
)))
...
...
@@ -8050,9 +8058,6 @@ reload_cse_simplify (insn)
return
;
}
/* It's not a no-op, but we can try to simplify it. */
count
+=
reload_cse_simplify_set
(
body
,
insn
);
if
(
count
>
0
)
apply_change_group
();
else
...
...
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