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
6461be14
Commit
6461be14
authored
Mar 24, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r582
parent
95f2ba07
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
gcc/function.c
+10
-2
No files found.
gcc/function.c
View file @
6461be14
...
@@ -2210,9 +2210,17 @@ instantiate_virtual_regs_1 (loc, object, extra_insns)
...
@@ -2210,9 +2210,17 @@ instantiate_virtual_regs_1 (loc, object, extra_insns)
Note that we cannot pass X as the object in the recursive call
Note that we cannot pass X as the object in the recursive call
since the insn being processed may not allow all valid
since the insn being processed may not allow all valid
addresses. */
addresses. However, if we were not passed on object, we can
only modify X without copying it if X will have a valid
address.
if
(
instantiate_virtual_regs_1
(
&
XEXP
(
x
,
0
),
object
,
0
))
??? Also note that this can still lose if OBJECT is an insn that
has less restrictions on an address that some other insn.
In that case, we will modify the shared address. This case
doesn't seem very likely, though. */
if
(
instantiate_virtual_regs_1
(
&
XEXP
(
x
,
0
),
object
?
object
:
x
,
0
))
return
1
;
return
1
;
/* Otherwise make a copy and process that copy. We copy the entire
/* Otherwise make a copy and process that copy. We copy the entire
...
...
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