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
b26a0d6d
Commit
b26a0d6d
authored
Sep 20, 1995
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(cmphi recognizer): Make condition match constraints.
(cmpqi recognizer): Likewise. From-SVN: r10384
parent
d8090d46
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
gcc/config/pyr/pyr.md
+3
-3
No files found.
gcc/config/pyr/pyr.md
View file @
b26a0d6d
;; GNU C machine description for Pyramid 90x, 9000, MIServer Series
;; Copyright (C) 1989, 1990 Free Software Foundation, Inc.
;; Copyright (C) 1989, 1990
, 1995
Free Software Foundation, Inc.
;; This file is part of GNU CC.
...
...
@@ -224,7 +224,7 @@
(compare (match_operand:HI 0 "nonimmediate_operand" "r,m")
(match_operand:HI 1 "nonimmediate_operand" "m,r")))]
"(!TRULY_UNSIGNED_COMPARE_P (GET_CODE (XEXP (SET_SRC (PATTERN (NEXT_INSN (insn))), 0))))
&& (
GET_CODE (operands
[
0
]
) != GET_CODE (operands
[
1
]
))"
&& (
(GET_CODE (operands
[
0
]
) == MEM) != (GET_CODE (operands
[
1
]
) == MEM
))"
"
*
{
rtx br_insn = NEXT_INSN (insn);
...
...
@@ -306,7 +306,7 @@
[
(set (cc0)
(compare (match_operand:QI 0 "nonimmediate_operand" "r,m")
(match_operand:QI 1 "nonimmediate_operand" "m,r")))]
"(
GET_CODE (operands
[
0
]
) != GET_CODE (operands
[
1
]
))"
"(
(GET_CODE (operands
[
0
]
) == MEM) != (GET_CODE (operands
[
1
]
) == MEM
))"
"
*
{
rtx br_insn = NEXT_INSN (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