[paint-extents] Unlikely

This commit is contained in:
Behdad Esfahbod 2022-12-30 14:47:47 -07:00
parent ca844b6975
commit d7941e04df
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ static void
add_point (hb_extents_t *extents,
float x, float y)
{
if (extents->xmax < extents->xmin)
if (unlikely (extents->xmax < extents->xmin))
{
extents->xmin = extents->xmax = x;
extents->ymin = extents->ymax = y;