Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bits.c
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ int swapNibblePairs(int x) {
// P9
/*
* secondLowestZeroBit - return a mask that marks the position of the second least significant 0 bit
* Examples: secondLowestZeroBit(0xFFFFFFFD) = 0x4, secondLowestZeroBit(0x7FFFFFFF) = 0
* Examples: secondLowestZeroBit(0xFFFFFFFC) = 0x4, secondLowestZeroBit(0x7FFFFFFF) = 0
* secondLowestZeroBit(-1) = 0
* Legal ops: ! ~ & ^ | + << >>
* Max ops: 8
Expand Down
Loading