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
89f1c7f2
Commit
89f1c7f2
authored
Aug 18, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(simplify_comparison): Rearrange conditional in SUBREG case.
From-SVN: r1886
parent
60d00117
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
gcc/combine.c
+6
-4
No files found.
gcc/combine.c
View file @
89f1c7f2
...
...
@@ -7544,10 +7544,12 @@ simplify_comparison (code, pop0, pop1)
break
;
case
SUBREG
:
/* If the inner mode is smaller and we are extracting the low
part, we can treat the SUBREG as if it were a ZERO_EXTEND. */
if
(
!
subreg_lowpart_p
(
op0
)
||
GET_MODE_BITSIZE
(
GET_MODE
(
SUBREG_REG
(
op0
)))
>=
mode_width
)
/* If the inner mode is narrower and we are extracting the low part,
we can treat the SUBREG as if it were a ZERO_EXTEND. */
if
(
subreg_lowpart_p
(
op0
)
&&
GET_MODE_BITSIZE
(
GET_MODE
(
SUBREG_REG
(
op0
)))
<
mode_width
)
/* Fall through */
;
else
break
;
/* ... fall through ... */
...
...
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