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
1fa5c709
Commit
1fa5c709
authored
Jun 11, 2005
by
David Edelsohn
Committed by
David Edelsohn
Jun 11, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/rs6000/rs6000.md (eq<mode>_compare): Restrict to Pmode.
From-SVN: r100841
parent
e4d693c1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
9 deletions
+13
-9
gcc/ChangeLog
+4
-0
gcc/config/rs6000/rs6000.md
+9
-9
No files found.
gcc/ChangeLog
View file @
1fa5c709
2005-06-11 David Edelsohn <edelsohn@gnu.org>
* config/rs6000/rs6000.md (eq<mode>_compare): Restrict to Pmode.
2005-06-11 Daniel Berlin <dberlin@dberlin.org>
2005-06-11 Daniel Berlin <dberlin@dberlin.org>
* lambda-code.c (replace_uses_equiv_to_x_with_y): Verify the step
* lambda-code.c (replace_uses_equiv_to_x_with_y): Verify the step
...
...
gcc/config/rs6000/rs6000.md
View file @
1fa5c709
...
@@ -11506,23 +11506,23 @@
...
@@ -11506,23 +11506,23 @@
(define_insn_and_split "
*
eq
<mode>
_compare"
(define_insn_and_split "
*
eq
<mode>
_compare"
[
(set (match_operand:CC 5 "cc_reg_operand" "=y")
[
(set (match_operand:CC 5 "cc_reg_operand" "=y")
(compare:CC
(compare:CC
(eq:
GPR (match_operand:GPR
1 "gpc_reg_operand" "=r")
(eq:
P (match_operand:P
1 "gpc_reg_operand" "=r")
(match_operand:GPR
2 "scc_eq_operand" "
<scc
_eq_op2
>
"))
(match_operand:P
2 "scc_eq_operand" "
<scc
_eq_op2
>
"))
(const_int 0)))
(const_int 0)))
(set (match_operand:
GPR
0 "gpc_reg_operand" "=r")
(set (match_operand:
P
0 "gpc_reg_operand" "=r")
(eq:
GPR
(match_dup 1) (match_dup 2)))
(eq:
P
(match_dup 1) (match_dup 2)))
(clobber (match_scratch:
GPR
3 "=r"))
(clobber (match_scratch:
P
3 "=r"))
(clobber (match_scratch:
GPR
4 "=r"))]
(clobber (match_scratch:
P
4 "=r"))]
""
""
"#"
"#"
"reload_completed"
"reload_completed"
[
(set (match_dup 3)
[
(set (match_dup 3)
(clz:
GPR
(match_dup 4)))
(clz:
P
(match_dup 4)))
(parallel
[
(set (match_dup 5)
(parallel
[
(set (match_dup 5)
(compare:CC (lshiftrt:
GPR
(match_dup 3) (match_dup 6))
(compare:CC (lshiftrt:
P
(match_dup 3) (match_dup 6))
(const_int 0)))
(const_int 0)))
(set (match_dup 0)
(set (match_dup 0)
(lshiftrt:
GPR
(match_dup 3) (match_dup 6)))])]
(lshiftrt:
P
(match_dup 3) (match_dup 6)))])]
{
{
if (GET_CODE (operands
[
2
]
) != CONST_INT || INTVAL (operands
[
2
]
) != 0)
if (GET_CODE (operands
[
2
]
) != CONST_INT || INTVAL (operands
[
2
]
) != 0)
{
{
...
...
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