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
5c0e1091
Commit
5c0e1091
authored
Jul 06, 1993
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(simplify_and_const_int, LSHIFTRT case): Must be at
least as many sign bit copies as bits in mask. From-SVN: r4868
parent
a5e9b124
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletions
+4
-1
gcc/combine.c
+4
-1
No files found.
gcc/combine.c
View file @
5c0e1091
...
...
@@ -6118,7 +6118,10 @@ simplify_and_const_int (x, mode, varop, constop)
+
num_sign_bit_copies
(
XEXP
(
varop
,
0
),
GET_MODE
(
XEXP
(
varop
,
0
))))
>=
GET_MODE_BITSIZE
(
GET_MODE
(
varop
)))
&&
exact_log2
(
constop
+
1
)
>=
0
)
&&
exact_log2
(
constop
+
1
)
>=
0
&&
(
num_sign_bit_copies
(
XEXP
(
varop
,
0
),
GET_MODE
(
XEXP
(
varop
,
0
)))
>=
exact_log2
(
constop
+
1
)))
varop
=
gen_rtx_combine
(
LSHIFTRT
,
GET_MODE
(
varop
),
XEXP
(
varop
,
0
),
GEN_INT
(
GET_MODE_BITSIZE
(
GET_MODE
(
varop
))
...
...
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