summaryrefslogtreecommitdiffstats
path: root/src/trie.c
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2023-05-16 10:26:35 -0400
committerTavian Barnes <tavianator@tavianator.com>2023-05-16 11:29:48 -0400
commit9ee1ca387d59a2d1281c310915a9853a57b11a1e (patch)
treebeb0b34b8b946d86ba67fb7a1a456a2ac2fa95cf /src/trie.c
parent6b0209f04a7a2fd3f8aec78808225177647c3aec (diff)
downloadbfs-9ee1ca387d59a2d1281c310915a9853a57b11a1e.tar.xz
trie: Use the _WIDTH macros
Diffstat (limited to 'src/trie.c')
-rw-r--r--src/trie.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/trie.c b/src/trie.c
index 5427d79..becddbf 100644
--- a/src/trie.c
+++ b/src/trie.c
@@ -84,6 +84,7 @@
#include "trie.h"
#include "config.h"
#include "diag.h"
+#include "int.h"
#include "list.h"
#include <assert.h>
#include <limits.h>
@@ -369,19 +370,19 @@ static size_t trie_node_size(unsigned int size) {
#if defined(__BYTE_ORDER__) && __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
# define TRIE_BSWAP(n) (n)
#elif defined(__BYTE_ORDER__) && __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
-# if __SIZEOF_SIZE_T__ == 8
+# if SIZE_WIDTH == 8
# define TRIE_BSWAP(n) __builtin_bswap64(n)
-# elif __SIZEOF_SIZE_T__ == 4
+# elif SIZE_WIDTH == 4
# define TRIE_BSWAP(n) __builtin_bswap32(n)
# endif
#endif
#ifdef TRIE_BSWAP
-# if __SIZEOF_SIZE_T__ == __SIZEOF_LONG_LONG__
+# if SIZE_WIDTH == LLONG_WIDTH
# define TRIE_CTZ(n) __builtin_ctzll(n)
-# elif __SIZEOF_SIZE_T__ == __SIZEOF_LONG__
+# elif SiZE_WIDTH == LONG_WIDTH
# define TRIE_CTZ(n) __builtin_ctzl(n)
-# elif __SIZEOF_SIZE_T__ == __SIZEOF_INT__
+# elif SIZE_WIDTH == INT_WIDTH
# define TRIE_CTZ(n) __builtin_ctz(n)
# endif
#endif