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
751a3523
Commit
751a3523
authored
Mar 30, 1993
by
Jeff Law
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Jeff for Tege.
* pa.md (sminsi3, smaxsi3): Fix bug in last change. From-SVN: r3932
parent
574c75a3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
9 deletions
+11
-9
gcc/config/pa/pa.md
+11
-9
No files found.
gcc/config/pa/pa.md
View file @
751a3523
...
...
@@ -480,16 +480,18 @@
[
(set_attr "type" "binary,binary")
(set_attr "length" "2,3")])
;; Signed/Unsigned minimum and maximum patterns.
; Patterns for max and min. (There is no need for an earlyclobber in the
; last alternative since the middle alternative will match if op0 == op1.)
(define_insn "sminsi3"
[
(set (match_operand:SI 0 "register_operand" "=r,r,r")
(smin:SI (match_operand:SI 1 "register_operand" "%
r,0,0
")
(match_operand:SI 2 "arith11_operand" "
M,r,I
")))]
(smin:SI (match_operand:SI 1 "register_operand" "%
0,0,r
")
(match_operand:SI 2 "arith11_operand" "
r,I,M
")))]
""
"@
comclr,> %1,%2,%0
\;
copy %1,%0
comclr,> %2,%0,0
\;
copy %2,%0
comiclr,> %2,%0,0
\;
ldi %2,%0"
comiclr,> %2,%0,0
\;
ldi %2,%0
comclr,> %1,%2,%0
\;
copy %1,%0"
[
(set_attr "type" "multi,multi,multi")
(set_attr "length" "2,2,2")])
...
...
@@ -506,13 +508,13 @@
(define_insn "smaxsi3"
[
(set (match_operand:SI 0 "register_operand" "=r,r,r")
(smax:SI (match_operand:SI 1 "register_operand" "%
r,0,0
")
(match_operand:SI 2 "arith11_operand" "
M,r,I
")))]
(smax:SI (match_operand:SI 1 "register_operand" "%
0,0,r
")
(match_operand:SI 2 "arith11_operand" "
r,I,M
")))]
""
"@
comclr,< %1,%2,%0
\;
copy %1,%0
comclr,< %2,%0,0
\;
copy %2,%0
comiclr,< %2,%0,0
\;
ldi %2,%0"
comiclr,< %2,%0,0
\;
ldi %2,%0
comclr,< %1,%2,%0
\;
copy %1,%0"
[
(set_attr "type" "multi,multi,multi")
(set_attr "length" "2,2,2")])
...
...
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