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
4d61f8c5
Commit
4d61f8c5
authored
Dec 24, 1993
by
Torbjorn Granlund
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(simplify_binary_operation, case *SHIFT*): Reduce arg1 as
defined by SHIFT_COUNT_TRUNCATED. From-SVN: r6296
parent
792089b3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
12 deletions
+3
-12
gcc/cse.c
+3
-12
No files found.
gcc/cse.c
View file @
4d61f8c5
...
...
@@ -3844,12 +3844,9 @@ simplify_binary_operation (code, mode, op0, op1)
#ifdef SHIFT_COUNT_TRUNCATED
if
(
SHIFT_COUNT_TRUNCATED
)
arg1
&=
(
BITS_PER_WORD
-
1
)
;
arg1
%=
width
;
#endif
if
(
arg1
>=
width
)
return
0
;
val
=
((
unsigned
HOST_WIDE_INT
)
arg0
)
>>
arg1
;
break
;
...
...
@@ -3860,12 +3857,9 @@ simplify_binary_operation (code, mode, op0, op1)
#ifdef SHIFT_COUNT_TRUNCATED
if
(
SHIFT_COUNT_TRUNCATED
)
arg1
&=
(
BITS_PER_WORD
-
1
)
;
arg1
%=
width
;
#endif
if
(
arg1
>=
width
)
return
0
;
val
=
((
unsigned
HOST_WIDE_INT
)
arg0
)
<<
arg1
;
break
;
...
...
@@ -3875,12 +3869,9 @@ simplify_binary_operation (code, mode, op0, op1)
#ifdef SHIFT_COUNT_TRUNCATED
if
(
SHIFT_COUNT_TRUNCATED
)
arg1
&=
(
BITS_PER_WORD
-
1
)
;
arg1
%=
width
;
#endif
if
(
arg1
>=
width
)
return
0
;
val
=
arg0s
>>
arg1
;
/* Bootstrap compiler may not have sign extended the right shift.
...
...
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