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
2bbc163f
Commit
2bbc163f
authored
Dec 27, 1993
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(maxsf3, minsf3): Correct numerous errors.
From-SVN: r6338
parent
1fc3d466
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
gcc/config/alpha/alpha.md
+7
-5
No files found.
gcc/config/alpha/alpha.md
View file @
2bbc163f
...
...
@@ -1696,26 +1696,28 @@
(define_expand "maxsf3"
[
(set (match_dup 3)
(le:DF (
match_operand:SF 1 "reg_or_fp0_operand" ""
)
(le:DF (
float_extend:DF (match_operand:SF 1 "reg_or_fp0_operand" "")
)
(float_extend:DF (match_operand:SF 2 "reg_or_fp0_operand" ""))))
(set (match_operand:SF 0 "register_operand" "")
(if_then_else:SF (eq (match_dup 3) (
const_int 0
))
(if_then_else:SF (eq (match_dup 3) (
match_dup 4
))
(match_dup 1) (match_dup 2)))]
"TARGET_FP"
"
{ operands
[
3
]
= gen_reg_rtx (SFmode);
{ operands
[
3
]
= gen_reg_rtx (DFmode);
operands
[
4
]
= CONST0_RTX (DFmode);
}")
(define_expand "minsf3"
[
(set (match_dup 3)
(lt:DF (
match_operand:SF 1 "reg_or_fp0_operand" ""
)
(lt:DF (
float_extend:DF (match_operand:SF 1 "reg_or_fp0_operand" "")
)
(float_extend:DF (match_operand:SF 2 "reg_or_fp0_operand" ""))))
(set (match_operand:SF 0 "register_operand" "")
(if_then_else:SF (ne (match_dup 3) (const_int 0))
(match_dup 1) (match_dup 2)))]
"TARGET_FP"
"
{ operands
[
3
]
= gen_reg_rtx (SFmode);
{ operands
[
3
]
= gen_reg_rtx (DFmode);
operands
[
4
]
= CONST0_RTX (DFmode);
}")
(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