fix mi_likely branch that was marked as unlikely

This commit is contained in:
daan 2019-08-29 07:50:35 -07:00
parent e8c7505853
commit 64c1d6de86

View File

@ -180,7 +180,7 @@ void _mi_page_free_collect(mi_page_t* page, bool force) {
// and the local free list
if (page->local_free != NULL) {
if (mi_unlikely(page->free == NULL)) {
if (mi_likely(page->free == NULL)) {
// usual case
page->free = page->local_free;
page->local_free = NULL;