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
3b7e5ef4
Commit
3b7e5ef4
authored
Aug 30, 1997
by
David Edelsohn
Committed by
Michael Meissner
Aug 30, 1997
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Pay DF fused add ops pay attention to -mno-fused-add
From-SVN: r15002
parent
5cd5f4a7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
4 deletions
+9
-4
gcc/ChangeLog
+5
-0
gcc/config/rs6000/rs6000.md
+4
-4
No files found.
gcc/ChangeLog
View file @
3b7e5ef4
Sat Aug 30 10:49:46 1997 David Edelsohn <edelsohn@mhpcc.edu>
* rs6000.md: Make DF fused-add operations pay attention to
-mno-fused-add.
Fri Aug 29 19:19:54 1997 Jim Wilson <wilson@cygnus.com>
* i386/xm-sysv4.h (DONT_DECLARE_SYS_SIGLIST): Define.
...
...
gcc/config/rs6000/rs6000.md
View file @
3b7e5ef4
...
...
@@ -3351,7 +3351,7 @@
(plus:DF (mult:DF (match_operand:DF 1 "gpc_reg_operand" "%f")
(match_operand:DF 2 "gpc_reg_operand" "f"))
(match_operand:DF 3 "gpc_reg_operand" "f")))]
"TARGET_HARD_FLOAT"
"TARGET_HARD_FLOAT
&& TARGET_FUSED_MADD
"
"{fma|fmadd} %0,%1,%2,%3"
[
(set_attr "type" "dmul")
]
)
...
...
@@ -3360,7 +3360,7 @@
(minus:DF (mult:DF (match_operand:DF 1 "gpc_reg_operand" "%f")
(match_operand:DF 2 "gpc_reg_operand" "f"))
(match_operand:DF 3 "gpc_reg_operand" "f")))]
"TARGET_HARD_FLOAT"
"TARGET_HARD_FLOAT
&& TARGET_FUSED_MADD
"
"{fms|fmsub} %0,%1,%2,%3"
[
(set_attr "type" "dmul")
]
)
...
...
@@ -3369,7 +3369,7 @@
(neg:DF (plus:DF (mult:DF (match_operand:DF 1 "gpc_reg_operand" "%f")
(match_operand:DF 2 "gpc_reg_operand" "f"))
(match_operand:DF 3 "gpc_reg_operand" "f"))))]
"TARGET_HARD_FLOAT"
"TARGET_HARD_FLOAT
&& TARGET_FUSED_MADD
"
"{fnma|fnmadd} %0,%1,%2,%3"
[
(set_attr "type" "dmul")
]
)
...
...
@@ -3378,7 +3378,7 @@
(neg:DF (minus:DF (mult:DF (match_operand:DF 1 "gpc_reg_operand" "%f")
(match_operand:DF 2 "gpc_reg_operand" "f"))
(match_operand:DF 3 "gpc_reg_operand" "f"))))]
"TARGET_HARD_FLOAT"
"TARGET_HARD_FLOAT
&& TARGET_FUSED_MADD
"
"{fnms|fnmsub} %0,%1,%2,%3"
[
(set_attr "type" "dmul")
]
)
...
...
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