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
8c4ff866
Commit
8c4ff866
authored
May 27, 1994
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(print_operand_address): print_operand_address creates PLUS-rtls for
internal use, so it has to handle them. From-SVN: r7372
parent
6ded3228
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
gcc/config/ns32k/ns32k.c
+7
-5
No files found.
gcc/config/ns32k/ns32k.c
View file @
8c4ff866
...
...
@@ -627,7 +627,7 @@ print_operand_address (file, addr)
off
=
XEXP
(
tmp1
,
1
);
if
(
GET_CODE
(
sym
)
==
SYMBOL_REF
)
{
if
(
GET_CODE
(
off
)
!=
CONST_INT
)
if
(
GET_CODE
(
off
)
!=
CONST_INT
)
abort
();
if
(
CONSTANT_POOL_ADDRESS_P
(
sym
)
...
...
@@ -772,9 +772,10 @@ print_operand_address (file, addr)
/* Abs. addresses don't need a base (I think). */
if
(
GET_CODE
(
offset
)
!=
CONST_INT
#ifndef PC_RELATIVE
&&
GET_CODE
(
offset
)
!=
LABEL_REF
&&
GET_CODE
(
offset
)
!=
SYMBOL_REF
&&
GET_CODE
(
offset
)
!=
CONST
&&
GET_CODE
(
offset
)
!=
LABEL_REF
&&
GET_CODE
(
offset
)
!=
SYMBOL_REF
&&
GET_CODE
(
offset
)
!=
CONST
&&
GET_CODE
(
offset
)
!=
PLUS
#endif
)
{
...
...
@@ -794,7 +795,8 @@ print_operand_address (file, addr)
#ifdef PC_RELATIVE
else
if
(
GET_CODE
(
offset
)
==
LABEL_REF
||
GET_CODE
(
offset
)
==
SYMBOL_REF
||
GET_CODE
(
offset
)
==
CONST
)
||
GET_CODE
(
offset
)
==
CONST
||
GET_CODE
(
offset
)
==
PLUS
)
fprintf
(
file
,
"(pc)"
);
#endif
#ifdef BASE_REG_NEEDED
/* this is defined if the assembler always
...
...
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