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
2bba3a75
Commit
2bba3a75
authored
Sep 18, 1992
by
Michael Meissner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow calls to absolute addresses.
From-SVN: r2154
parent
a5cc4aa9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
gcc/config/mips/mips.md
+14
-0
No files found.
gcc/config/mips/mips.md
View file @
2bba3a75
...
...
@@ -4005,6 +4005,13 @@ move\\t%0,%z4\\n\\
if (GET_CODE (target) == SYMBOL_REF)
return
\"
%
*
jal
\\
t%0
\"
;
else if (GET_CODE (target) == CONST_INT)
{
operands
[
0
]
= target;
operands
[
1
]
= gen_rtx (REG, SImode, GP_REG_FIRST + 31);
return
\"
%
*
%
[
li\\t%@,%0\\n\\tjal\\t%1,%@%
]
\"
;
}
else
{
operands
[
0
]
= target;
...
...
@@ -4048,6 +4055,13 @@ move\\t%0,%z4\\n\\
if (GET_CODE (target) == SYMBOL_REF)
return
\"
%
*
jal
\\
t%1
\"
;
else if (GET_CODE (target) == CONST_INT)
{
operands
[
1
]
= target;
operands
[
2
]
= gen_rtx (REG, SImode, GP_REG_FIRST + 31);
return
\"
%
*
%
[
li\\t%@,%1\\n\\tjal\\t%2,%@%
]
\"
;
}
else
{
operands
[
1
]
= target;
...
...
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