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
19087b1c
Commit
19087b1c
authored
Jun 26, 1999
by
David Edelsohn
Committed by
David Edelsohn
Jun 26, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* rs6000.c (print_operand, case 'L'): Use plus_constant_for_output.
From-SVN: r27779
parent
f0eafa79
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
gcc/ChangeLog
+4
-0
gcc/config/rs6000/rs6000.c
+4
-3
No files found.
gcc/ChangeLog
View file @
19087b1c
Sat Jun 26 17:18:18 1999 David Edelsohn <edelsohn@gnu.org>
* rs6000.c (print_operand, case 'L'): Use plus_constant_for_output.
Fri Jun 25 11:33:24 1999 Richard Henderson <rth@cygnus.com>
Fri Jun 25 11:33:24 1999 Richard Henderson <rth@cygnus.com>
* alpha.c (override_options): Add -mcpu=ev45 as an alias for ev4.
* alpha.c (override_options): Add -mcpu=ev45 as an alias for ev4.
...
...
gcc/config/rs6000/rs6000.c
View file @
19087b1c
...
@@ -2693,10 +2693,11 @@ print_operand (file, x, code)
...
@@ -2693,10 +2693,11 @@ print_operand (file, x, code)
we have already done it, we can just use an offset of word. */
we have already done it, we can just use an offset of word. */
if
(
GET_CODE
(
XEXP
(
x
,
0
))
==
PRE_INC
if
(
GET_CODE
(
XEXP
(
x
,
0
))
==
PRE_INC
||
GET_CODE
(
XEXP
(
x
,
0
))
==
PRE_DEC
)
||
GET_CODE
(
XEXP
(
x
,
0
))
==
PRE_DEC
)
output_address
(
plus_constant
(
XEXP
(
XEXP
(
x
,
0
),
0
),
output_address
(
plus_constant
_for_output
(
XEXP
(
XEXP
(
x
,
0
),
0
),
UNITS_PER_WORD
));
UNITS_PER_WORD
));
else
else
output_address
(
plus_constant
(
XEXP
(
x
,
0
),
UNITS_PER_WORD
));
output_address
(
plus_constant_for_output
(
XEXP
(
x
,
0
),
UNITS_PER_WORD
));
if
(
small_data_operand
(
x
,
GET_MODE
(
x
)))
if
(
small_data_operand
(
x
,
GET_MODE
(
x
)))
fprintf
(
file
,
"@%s(%s)"
,
SMALL_DATA_RELOC
,
fprintf
(
file
,
"@%s(%s)"
,
SMALL_DATA_RELOC
,
reg_names
[
SMALL_DATA_REG
]);
reg_names
[
SMALL_DATA_REG
]);
...
...
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