diff options
author | lloyd <[email protected]> | 2008-09-05 14:56:14 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-09-05 14:56:14 +0000 |
commit | b3f36983110046a97093ce6b5e90565aaa369e6f (patch) | |
tree | 492f075d5e7aaf18842ffb448d7bc80851c359e5 /src | |
parent | 23edbc3cd784dce36148133109921990bfe0ddf8 (diff) |
Replace __builtin_ctzl with a new ctz function in bit_ops.h
Diffstat (limited to 'src')
-rw-r--r-- | src/numthry.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/numthry.cpp b/src/numthry.cpp index 9f05b6114..ffd523e82 100644 --- a/src/numthry.cpp +++ b/src/numthry.cpp @@ -86,7 +86,7 @@ u32bit low_zero_bits(const BigInt& n) if(x) { - low_zero += __builtin_ctzl(x); + low_zero += ctz(x); break; } else |