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
318b149c
Commit
318b149c
authored
Aug 31, 1994
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(nonzero_bits, cases DIV, MOD, UDIV, UMOD): Declare op0_maybe_minusp
and op1_maybe_minusp as HOST_WIDE_INT. From-SVN: r8006
parent
4db3bddc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
gcc/combine.c
+4
-2
No files found.
gcc/combine.c
View file @
318b149c
...
...
@@ -6889,8 +6889,10 @@ nonzero_bits (x, mode)
int
width1
=
floor_log2
(
nz1
)
+
1
;
int
low0
=
floor_log2
(
nz0
&
-
nz0
);
int
low1
=
floor_log2
(
nz1
&
-
nz1
);
int
op0_maybe_minusp
=
(
nz0
&
((
HOST_WIDE_INT
)
1
<<
(
mode_width
-
1
)));
int
op1_maybe_minusp
=
(
nz1
&
((
HOST_WIDE_INT
)
1
<<
(
mode_width
-
1
)));
HOST_WIDE_INT
op0_maybe_minusp
=
(
nz0
&
((
HOST_WIDE_INT
)
1
<<
(
mode_width
-
1
)));
HOST_WIDE_INT
op1_maybe_minusp
=
(
nz1
&
((
HOST_WIDE_INT
)
1
<<
(
mode_width
-
1
)));
int
result_width
=
mode_width
;
int
result_low
=
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