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
9c9a6f42
Commit
9c9a6f42
authored
Jul 03, 1993
by
Jeff Law
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* pa.c (call_operand_address): Do not accept registers anymore.
From-SVN: r4836
parent
6c61ac77
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
gcc/config/pa/pa.c
+6
-2
No files found.
gcc/config/pa/pa.c
View file @
9c9a6f42
...
@@ -58,13 +58,17 @@ reg_or_0_operand (op, mode)
...
@@ -58,13 +58,17 @@ reg_or_0_operand (op, mode)
return
(
op
==
CONST0_RTX
(
mode
)
||
register_operand
(
op
,
mode
));
return
(
op
==
CONST0_RTX
(
mode
)
||
register_operand
(
op
,
mode
));
}
}
/* Return non-zero if OP is suitable for use in a call to a named
function.
(???) For 2.5 try to eliminate either call_operand_address or
function_label_operand, they perform very similar functions. */
int
int
call_operand_address
(
op
,
mode
)
call_operand_address
(
op
,
mode
)
rtx
op
;
rtx
op
;
enum
machine_mode
mode
;
enum
machine_mode
mode
;
{
{
return
(
REG_P
(
op
)
return
(
CONSTANT_P
(
op
)
&&
!
TARGET_LONG_CALLS
);
||
(
CONSTANT_P
(
op
)
&&
!
TARGET_LONG_CALLS
));
}
}
/* Return 1 if X contains a symbolic expression. We know these
/* Return 1 if X contains a symbolic expression. We know these
...
...
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