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
6db77abd
Commit
6db77abd
authored
Feb 01, 1994
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(minsf3, maxdf3, mindf3): Properly insert constant of zero into
patterns. From-SVN: r6455
parent
bb562bfc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
gcc/config/alpha/alpha.md
+6
-4
No files found.
gcc/config/alpha/alpha.md
View file @
6db77abd
;;- Machine description for DEC Alpha for GNU C compiler
;; Copyright (C) 1992, 1993 Free Software Foundation, Inc.
;; Copyright (C) 1992, 1993
, 1994
Free Software Foundation, Inc.
;; Contributed by Richard Kenner (kenner@nyu.edu)
;; This file is part of GNU CC.
...
...
@@ -1675,11 +1675,12 @@
(le:DF (match_operand:DF 1 "reg_or_fp0_operand" "")
(match_operand:DF 2 "reg_or_fp0_operand" "")))
(set (match_operand:DF 0 "register_operand" "")
(if_then_else:DF (eq (match_dup 3) (
const_int 0
))
(if_then_else:DF (eq (match_dup 3) (
match_dup 4
))
(match_dup 1) (match_dup 2)))]
"TARGET_FP"
"
{ operands
[
3
]
= gen_reg_rtx (DFmode);
operands
[
4
]
= CONST0_RTX (DFmode);
}")
(define_expand "mindf3"
...
...
@@ -1687,11 +1688,12 @@
(lt:DF (match_operand:DF 1 "reg_or_fp0_operand" "")
(match_operand:DF 2 "reg_or_fp0_operand" "")))
(set (match_operand:DF 0 "register_operand" "")
(if_then_else:DF (ne (match_dup 3) (
const_int 0
))
(if_then_else:DF (ne (match_dup 3) (
match_dup 4
))
(match_dup 1) (match_dup 2)))]
"TARGET_FP"
"
{ operands
[
3
]
= gen_reg_rtx (DFmode);
operands
[
4
]
= CONST0_RTX (DFmode);
}")
(define_expand "maxsf3"
...
...
@@ -1712,7 +1714,7 @@
(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
))
(if_then_else:SF (ne (match_dup 3) (
match_dup 4
))
(match_dup 1) (match_dup 2)))]
"TARGET_FP"
"
...
...
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