aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 3fe6967..dc00391 100644
--- a/src/main.c
+++ b/src/main.c
@@ -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;