diff options
author | Jason Evans <jasone@canonware.com> | 2016-03-23 00:54:35 (GMT) |
---|---|---|
committer | Jason Evans <jasone@canonware.com> | 2016-03-23 00:54:35 (GMT) |
commit | 6c460ad91bf349ebac3b23e58d97769a982110fe (patch) | |
tree | 0659c384b00957993e1edf2f71cbbf6f74ecc7bc /src/util.c | |
parent | 18903c592fdbf2384b59051bd251d234e84647af (diff) | |
download | jemalloc-6c460ad91bf349ebac3b23e58d97769a982110fe.zip jemalloc-6c460ad91bf349ebac3b23e58d97769a982110fe.tar.gz jemalloc-6c460ad91bf349ebac3b23e58d97769a982110fe.tar.bz2 |
Optimize rtree_get().
Specialize fast path to avoid code that cannot execute for dependent
loads.
Manually unroll.
Diffstat (limited to 'src/util.c')
-rw-r--r-- | src/util.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -14,6 +14,7 @@ malloc_write("<jemalloc>: Unreachable code reached\n"); \ abort(); \ } \ + unreachable(); \ } while (0) #define not_implemented() do { \ |