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
055c7759
Commit
055c7759
authored
Mar 28, 2001
by
John David Anglin
Committed by
Alan Modra
Mar 28, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* reload1.c (eliminate_regs): Don't abort on MEM USEs.
From-SVN: r40887
parent
ad0fc698
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
gcc/ChangeLog
+4
-0
gcc/reload1.c
+6
-0
No files found.
gcc/ChangeLog
View file @
055c7759
2001-03-28 John David Anglin <dave@hiauly1.hia.nrc.ca>
* reload1.c (eliminate_regs): Don't abort on MEM USEs.
2001-03-27 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2001-03-27 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* Makefile.in (SYSTEM_H): Define.
* Makefile.in (SYSTEM_H): Define.
...
...
gcc/reload1.c
View file @
055c7759
...
@@ -2586,6 +2586,12 @@ eliminate_regs (x, mem_mode, insn)
...
@@ -2586,6 +2586,12 @@ eliminate_regs (x, mem_mode, insn)
return
x
;
return
x
;
case
USE
:
case
USE
:
/* Handle insn_list USE that a call to a pure function may generate. */
new
=
eliminate_regs
(
XEXP
(
x
,
0
),
0
,
insn
);
if
(
new
!=
XEXP
(
x
,
0
))
return
gen_rtx_USE
(
GET_MODE
(
x
),
new
);
return
x
;
case
CLOBBER
:
case
CLOBBER
:
case
ASM_OPERANDS
:
case
ASM_OPERANDS
:
case
SET
:
case
SET
:
...
...
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