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
79077c3f
Commit
79077c3f
authored
Sep 22, 1999
by
Jeffrey A Law
Committed by
Jeff Law
Sep 22, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* pa.md (return, return_internal): Use bve for PA2.0.
From-SVN: r29599
parent
9a40d6bc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
2 deletions
+14
-2
gcc/ChangeLog
+2
-0
gcc/config/pa/pa.md
+12
-2
No files found.
gcc/ChangeLog
View file @
79077c3f
...
...
@@ -37,6 +37,8 @@ Wed Sep 22 06:25:15 1999 Jim Kingdon <http://developer.redhat.com>
Wed
Sep
22
06
:
06
:
57
1999
Jeffrey
A
Law
(
law
@cygnus
.
com
)
*
pa
.
md
(
return
,
return_internal
)
:
Use
bve
for
PA2
.
0
.
*
pa
.
md
(
fused
multiply
)
:
Add
variants
which
reduce
height
for
the
fused
multiply
,
but
which
still
generate
2
insns
.
(
fnegabs
)
:
Similarly
.
...
...
gcc/config/pa/pa.md
View file @
79077c3f
...
...
@@ -4498,7 +4498,12 @@
(define_insn "return"
[
(return)
]
"hppa_can_use_return_insn_p ()"
"bv%
*
%%r0(%%r2)"
"
*
{
if (TARGET_PA_20)
return
\"
bve%
*
(%%r2)
\"
;
return
\"
bv%
*
%%r0(%%r2)
\"
;
}"
[
(set_attr "type" "branch")
(set_attr "length" "4")])
...
...
@@ -4508,7 +4513,12 @@
[
(use (reg:SI 2))
(return)]
""
"bv%
*
%%r0(%%r2)"
"
*
{
if (TARGET_PA_20)
return
\"
bve%
*
(%%r2)
\"
;
return
\"
bv%
*
%%r0(%%r2)
\"
;
}"
[
(set_attr "type" "branch")
(set_attr "length" "4")])
...
...
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