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
9ad91d71
Commit
9ad91d71
authored
Jul 24, 1996
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(canon_hash, cse_insn): MEM is not unchanging if it is in the frame (since
the temp slot might be reused). From-SVN: r12562
parent
7c225e88
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
gcc/cse.c
+4
-2
No files found.
gcc/cse.c
View file @
9ad91d71
...
...
@@ -1945,7 +1945,7 @@ canon_hash (x, mode)
do_not_record
=
1
;
return
0
;
}
if
(
!
RTX_UNCHANGING_P
(
x
))
if
(
!
RTX_UNCHANGING_P
(
x
)
||
FIXED_BASE_PLUS_P
(
XEXP
(
x
,
0
))
)
{
hash_arg_in_memory
=
1
;
if
(
MEM_IN_STRUCT_P
(
x
))
hash_arg_in_struct
=
1
;
...
...
@@ -7377,7 +7377,9 @@ cse_insn (insn, in_libcall_block)
elt
=
insert
(
dest
,
sets
[
i
].
src_elt
,
sets
[
i
].
dest_hash
,
GET_MODE
(
dest
));
elt
->
in_memory
=
(
GET_CODE
(
sets
[
i
].
inner_dest
)
==
MEM
&&
!
RTX_UNCHANGING_P
(
sets
[
i
].
inner_dest
));
&&
(
!
RTX_UNCHANGING_P
(
sets
[
i
].
inner_dest
)
||
FIXED_BASE_PLUS_P
(
XEXP
(
sets
[
i
].
inner_dest
,
0
))));
if
(
elt
->
in_memory
)
{
...
...
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