diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-09-12 18:19:13 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-09-12 18:19:13 +0200 |
commit | 9756eb66349f8a96fffd788894f198041847c727 (patch) | |
tree | c2a988299f2f4648ad52c691920b3122659fed65 /src | |
parent | 8a5ea0833a6428f2ed783693c7572bfdd88aa9d5 (diff) |
Fix check for __builtin_popcountg()
Diffstat (limited to 'src')
-rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -55,7 +55,7 @@ static void eqnfree(eqn_t *); static int popcnt(uint64_t n) { -#if !__has_builtin(__builtin_popcountg) +#if __has_builtin(__builtin_popcountg) return __builtin_popcountg(n); #else uint64_t c; |