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
bcbed709
Commit
bcbed709
authored
Oct 27, 1995
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(call_value_nt, call_nt): Force non-SYMBOL_REF into reg 27, just like
for OSF. From-SVN: r10533
parent
b83e575d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
4 deletions
+14
-4
gcc/config/alpha/alpha.md
+14
-4
No files found.
gcc/config/alpha/alpha.md
View file @
bcbed709
...
...
@@ -2650,8 +2650,13 @@
abort ();
operands
[
0
]
= XEXP (operands
[
0
]
, 0);
if (GET_CODE (operands
[
0
]
) != SYMBOL_REF)
operands
[
0
]
= force_reg (Pmode, operands
[
0
]
);
if (GET_CODE (operands
[
1
]
) != SYMBOL_REF
&& ! (GET_CODE (operands
[
1
]
) == REG && REGNO (operands
[
1
]
) == 27))
{
rtx tem = gen_rtx (REG, DImode, 27);
emit_move_insn (tem, operands
[
1
]
);
operands
[
1
]
= tem;
}
}")
(define_expand "call_value"
...
...
@@ -2701,8 +2706,13 @@
abort ();
operands
[
1
]
= XEXP (operands
[
1
]
, 0);
if (GET_CODE (operands
[
1
]
) != SYMBOL_REF)
operands
[
1
]
= force_reg (Pmode, operands
[
1
]
);
if (GET_CODE (operands
[
1
]
) != SYMBOL_REF
&& ! (GET_CODE (operands
[
1
]
) == REG && REGNO (operands
[
1
]
) == 27))
{
rtx tem = gen_rtx (REG, DImode, 27);
emit_move_insn (tem, operands
[
1
]
);
operands
[
1
]
= tem;
}
}")
(define_insn ""
...
...
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