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
7d558bfe
Commit
7d558bfe
authored
May 28, 1994
by
Torbjorn Granlund
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(call): Force address into register in non-symbol case.
(call_value): Likewise. From-SVN: r7380
parent
7f21d440
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
gcc/config/pa/pa.md
+5
-2
No files found.
gcc/config/pa/pa.md
View file @
7d558bfe
...
...
@@ -3025,7 +3025,8 @@
if (GET_CODE (op) == SYMBOL_REF)
emit_call_insn (gen_call_internal_symref (op, operands
[
1
]
));
else
emit_call_insn (gen_call_internal_reg (op, operands
[
1
]
));
emit_call_insn (gen_call_internal_reg (force_reg (SImode, op),
operands
[
1
]
));
if (flag_pic)
{
...
...
@@ -3091,7 +3092,9 @@
emit_call_insn (gen_call_value_internal_symref (operands
[
0
]
, op,
operands
[
2
]
));
else
emit_call_insn (gen_call_value_internal_reg (operands
[
0
]
, op, operands
[
2
]
));
emit_call_insn (gen_call_value_internal_reg (operands
[
0
]
,
force_reg (SImode, op),
operands
[
2
]
));
if (flag_pic)
{
...
...
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