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
7d4f2e6c
Commit
7d4f2e6c
authored
Oct 20, 1997
by
J"orn Rennecke
Committed by
Jeff Law
Oct 19, 1997
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* longlong.h (count_leading_zeros): Add missing casts to USItype.
From-SVN: r16096
parent
decd44ac
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
gcc/ChangeLog
+4
-0
gcc/longlong.h
+3
-3
No files found.
gcc/ChangeLog
View file @
7d4f2e6c
Sun Oct 19 19:00:35 1997 J"orn Rennecke <amylaar@cygnus.co.uk>
* longlong.h (count_leading_zeros): Add missing casts to USItype.
Sun Oct 19 18:44:06 1997 Jeffrey A Law (law@cygnus.com)
* i386/bsd386.h (ASM_COMMENT_START): Define.
...
...
gcc/longlong.h
View file @
7d4f2e6c
...
...
@@ -1236,9 +1236,9 @@ extern const UQItype __clz_tab[];
\
if (SI_TYPE_SIZE <= 32) \
{ \
__a = __xr < (
1<<2*__BITS4)
\
? (__xr < (
1<<__BITS4) ? 0 : __BITS4)
\
: (__xr < (
1<<3*__BITS4) ? 2*__BITS4 : 3*__BITS4);
\
__a = __xr < (
(USItype)1<<2*__BITS4)
\
? (__xr < (
(USItype)1<<__BITS4) ? 0 : __BITS4)
\
: (__xr < (
(USItype)1<<3*__BITS4) ? 2*__BITS4 : 3*__BITS4);
\
} \
else \
{ \
...
...
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