Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test 128 bit integer support (github issue bellard#125)
Browse files Browse the repository at this point in the history
Fabrice Bellard authored and andrjohns committed Dec 26, 2023

Verified

This commit was signed with the committer’s verified signature. The key has expired.
Urhengulas Johann Hemmann
1 parent d86d095 commit eb9d03c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libbf.h
Original file line number Diff line number Diff line change
@@ -27,7 +27,7 @@
#include <stddef.h>
#include <stdint.h>

#if INTPTR_MAX >= INT64_MAX
#if defined(__SIZEOF_INT128__) && (INTPTR_MAX >= INT64_MAX)
#define LIMB_LOG2_BITS 6
#else
#define LIMB_LOG2_BITS 5

0 comments on commit eb9d03c

Please sign in to comment.