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
4e26a7af
Commit
4e26a7af
authored
Dec 06, 2001
by
Nick Clifton
Committed by
Nick Clifton
Dec 06, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Pass pointer to RTX when calling alter_subreg().
From-SVN: r47717
parent
a57263bc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
gcc/ChangeLog
+4
-0
gcc/config/arm/arm.c
+2
-2
No files found.
gcc/ChangeLog
View file @
4e26a7af
2001
-
12
-
06
Nick
Clifton
<
nickc
@cambridge
.
redhat
.
com
>
*
config
/
arm
/
arm
.
c
(
load_multiple_sequence
)
:
Thu
Dec
6
06
:
55
:
13
2001
Richard
Kenner
<
kenner
@vlsi1
.
ultra
.
nyu
.
edu
>
*
function
.
c
(
assing_parms
)
:
Fix
typo
in
last
change
.
...
...
gcc/config/arm/arm.c
View file @
4e26a7af
...
...
@@ -3808,7 +3808,7 @@ load_multiple_sequence (operands, nops, regs, base, load_offset)
/* Convert a subreg of a mem into the mem itself. */
if
(
GET_CODE
(
operands
[
nops
+
i
])
==
SUBREG
)
operands
[
nops
+
i
]
=
alter_subreg
(
operands
[
nops
+
i
]
);
operands
[
nops
+
i
]
=
alter_subreg
(
operands
+
(
nops
+
i
)
);
if
(
GET_CODE
(
operands
[
nops
+
i
])
!=
MEM
)
abort
();
...
...
@@ -4043,7 +4043,7 @@ store_multiple_sequence (operands, nops, regs, base, load_offset)
/* Convert a subreg of a mem into the mem itself. */
if
(
GET_CODE
(
operands
[
nops
+
i
])
==
SUBREG
)
operands
[
nops
+
i
]
=
alter_subreg
(
operands
[
nops
+
i
]
);
operands
[
nops
+
i
]
=
alter_subreg
(
operands
+
(
nops
+
i
)
);
if
(
GET_CODE
(
operands
[
nops
+
i
])
!=
MEM
)
abort
();
...
...
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