aboutsummaryrefslogtreecommitdiff
path: root/util
AgeCommit message (Collapse)AuthorFilesLines
2022-02-07Eliminate Wunknown-pragmas for Clang/LLVM (#265)Zenithal1-1/+1
2019-10-22Make performance counters always 64 bits wide (#178)Luís Marques1-3/+16
This prevents the counters from easily overflowing for a 32-bit pk.
2019-08-12Prevent memset from calling itselfAndrew Waterman1-0/+5
With -ftree-loop-distribute-patterns, GCC detects that the body of memset is equivalent to memset, and so turns it into a call to memset, causing infinite recursion. Closes #170.
2018-07-09Properly license all nontrivial filesAndrew Waterman2-0/+4
2016-05-24speed up memcpy for aligned bases but misaligned lengthAndrew Waterman1-10/+13
2016-03-09Refactor pk, bbl, machine into separate librariesAndrew Waterman4-0/+194
Yuck.