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
709ab4fc
Commit
709ab4fc
authored
May 01, 1993
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(simplify_binary_operation): Reject CCmode in A & (~A) -> 0.
Also fix typos in previous change. From-SVN: r4295
parent
a878dab7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
gcc/cse.c
+5
-4
No files found.
gcc/cse.c
View file @
709ab4fc
...
...
@@ -3599,7 +3599,7 @@ simplify_binary_operation (code, mode, op0, op1)
if
(((
GET_CODE
(
op0
)
==
NOT
&&
rtx_equal_p
(
XEXP
(
op0
,
0
),
op1
))
||
(
GET_CODE
(
op1
)
==
NOT
&&
rtx_equal_p
(
XEXP
(
op1
,
0
),
op0
)))
&&
!
side_effects_p
(
op0
)
&&
mode
=
=
CCmode
)
&&
mode
!
=
CCmode
)
return
constm1_rtx
;
break
;
...
...
@@ -3610,7 +3610,7 @@ simplify_binary_operation (code, mode, op0, op1)
&&
(
INTVAL
(
op1
)
&
GET_MODE_MASK
(
mode
))
==
GET_MODE_MASK
(
mode
))
return
gen_rtx
(
NOT
,
mode
,
op0
);
if
(
op0
==
op1
&&
!
side_effects_p
(
op0
)
&&
mode
=
=
CCmode
)
&&
mode
!
=
CCmode
)
return
const0_rtx
;
break
;
...
...
@@ -3621,12 +3621,13 @@ simplify_binary_operation (code, mode, op0, op1)
&&
(
INTVAL
(
op1
)
&
GET_MODE_MASK
(
mode
))
==
GET_MODE_MASK
(
mode
))
return
op0
;
if
(
op0
==
op1
&&
!
side_effects_p
(
op0
)
&&
mode
=
=
CCmode
)
&&
mode
!
=
CCmode
)
return
op0
;
/* A & (~A) -> 0 */
if
(((
GET_CODE
(
op0
)
==
NOT
&&
rtx_equal_p
(
XEXP
(
op0
,
0
),
op1
))
||
(
GET_CODE
(
op1
)
==
NOT
&&
rtx_equal_p
(
XEXP
(
op1
,
0
),
op0
)))
&&
!
side_effects_p
(
op0
))
&&
!
side_effects_p
(
op0
)
&&
mode
!=
CCmode
)
return
const0_rtx
;
break
;
...
...
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