Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
timeout.c
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
timeout.c
Commits
c2c098ab
Commit
c2c098ab
authored
Feb 22, 2016
by
Nick Mathewson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove two more unneeded zero checks in bitops.c
parent
8ffc8e0a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
4 deletions
+0
-4
bitops.c
bitops.c
+0
-4
No files found.
bitops.c
View file @
c2c098ab
...
...
@@ -64,8 +64,6 @@ static __inline int clz32(unsigned long val)
static
inline
int
clz64
(
uint64_t
x
)
{
int
rv
=
0
;
if
(
!
x
)
return
64
;
process64
(
32
);
process64
(
16
);
...
...
@@ -79,8 +77,6 @@ static inline int clz64(uint64_t x)
static
inline
int
clz32
(
uint32_t
x
)
{
int
rv
=
0
;
if
(
!
x
)
return
32
;
process32
(
16
);
process32
(
8
);
...
...
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