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
1650fcad
Commit
1650fcad
authored
Sep 09, 2001
by
Richard Henderson
Committed by
Richard Henderson
Sep 09, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* emit-rtl.c (adjust_address): Fix mode for LO_SUM.
From-SVN: r45495
parent
5bb08c84
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
gcc/ChangeLog
+4
-0
gcc/emit-rtl.c
+1
-1
No files found.
gcc/ChangeLog
View file @
1650fcad
2001
-
09
-
09
Richard
Henderson
<
rth
@redhat
.
com
>
*
emit
-
rtl
.
c
(
adjust_address
)
:
Fix
mode
for
LO_SUM
.
Sun
Sep
9
10
:
43
:
17
CEST
2001
Jan
Hubicka
<
jh
@suse
.
cz
>
*
loop
.
c
(
combine_givs
)
:
Fix
computing
of
benefit
once
giv
is
combined
.
...
...
gcc/emit-rtl.c
View file @
1650fcad
...
...
@@ -1633,7 +1633,7 @@ adjust_address (memref, mode, offset)
&&
offset
>=
0
&&
(
unsigned
HOST_WIDE_INT
)
offset
<
GET_MODE_ALIGNMENT
(
GET_MODE
(
memref
))
/
BITS_PER_UNIT
)
addr
=
gen_rtx_LO_SUM
(
mode
,
XEXP
(
addr
,
0
),
addr
=
gen_rtx_LO_SUM
(
P
mode
,
XEXP
(
addr
,
0
),
plus_constant
(
XEXP
(
addr
,
1
),
offset
));
else
addr
=
plus_constant
(
addr
,
offset
);
...
...
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