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
bc083e18
Commit
bc083e18
authored
Jun 20, 2003
by
Zdenek Dvorak
Committed by
Zdenek Dvorak
Jun 19, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gcse.c (store_killed_in_insn): Fix.
From-SVN: r68230
parent
1bc7c5b6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
gcc/ChangeLog
+4
-0
gcc/gcse.c
+1
-2
No files found.
gcc/ChangeLog
View file @
bc083e18
2003-06-20 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
* gcse.c (store_killed_in_insn): Fix.
2003-06-19 Zack Weinberg <zack@codesourcery.com>
2003-06-19 Zack Weinberg <zack@codesourcery.com>
* target.h (asm_out.file_start, file_start_app_off,
* target.h (asm_out.file_start, file_start_app_off,
...
...
gcc/gcse.c
View file @
bc083e18
...
@@ -7464,7 +7464,7 @@ store_killed_in_insn (x, x_regs, insn)
...
@@ -7464,7 +7464,7 @@ store_killed_in_insn (x, x_regs, insn)
base of some of registers used in mem is stack pointer. */
base of some of registers used in mem is stack pointer. */
for
(
reg
=
x_regs
;
reg
;
reg
=
XEXP
(
reg
,
1
))
for
(
reg
=
x_regs
;
reg
;
reg
=
XEXP
(
reg
,
1
))
{
{
base
=
find_base_term
(
reg
);
base
=
find_base_term
(
XEXP
(
reg
,
0
)
);
if
(
!
base
if
(
!
base
||
(
GET_CODE
(
base
)
==
ADDRESS
||
(
GET_CODE
(
base
)
==
ADDRESS
&&
GET_MODE
(
base
)
==
Pmode
&&
GET_MODE
(
base
)
==
Pmode
...
@@ -7831,7 +7831,6 @@ store_motion ()
...
@@ -7831,7 +7831,6 @@ store_motion ()
print_rtl
(
gcse_file
,
get_insns
());
print_rtl
(
gcse_file
,
get_insns
());
}
}
init_alias_analysis
();
init_alias_analysis
();
/* Find all the available and anticipatable stores. */
/* Find all the available and anticipatable stores. */
...
...
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