Skip to content

Commit

Permalink
inline.h: Clarify comment
Browse files Browse the repository at this point in the history
  • Loading branch information
khwilliamson committed May 28, 2021
1 parent 874c6b2 commit 1c91fe6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion inline.h
Expand Up @@ -660,7 +660,8 @@ Perl_variant_byte_number(PERL_UINTMAX_T word)
| (55 << 8) | (63 << 0));
word >>= PERL_WORDSIZE * 7; /* >> by either 56 or 24 */

/* Here, word contains the position 7..63 of that bit. Convert to 0..7 */
/* Here, word contains the position 7,15,23,...,63 of that bit. Convert to
* 0..7 */
word = ((word + 1) >> 3) - 1;

# if BYTEORDER == 0x4321 || BYTEORDER == 0x87654321
Expand Down

0 comments on commit 1c91fe6

Please sign in to comment.