libzahl

big integer library
git clone git://git.suckless.org/libzahl
Log | Files | Refs | README | LICENSE

commit 6125c42b419f0ea6aa456d3f47c973f5b512dc5c
parent 5b10b24044b3350a19ab3d3c0b37b5e9c12365b1
Author: Mattias Andrée <maandree@kth.se>
Date:   Mon, 14 Mar 2016 00:14:22 +0100

Add reference to clang bug report

Signed-off-by: Mattias Andrée <maandree@kth.se>

Diffstat:
Msrc/allocator.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/allocator.c b/src/allocator.c @@ -34,6 +34,7 @@ libzahl_realloc(z_t a, size_t need) zahl_char_t *new; #if defined(__clang__) + /* https://llvm.org/bugs/show_bug.cgi?id=26930 */ need = clang_warkaround_next_2pow(need); #else NEXT_2POW(need);