[normalize] Remove an unlikely

Keep unlikely for truely unlikely scenarios.
This commit is contained in:
Behdad Esfahbod 2022-11-24 13:14:05 -07:00
parent 9e1239f443
commit d21bfb0861
1 changed files with 1 additions and 1 deletions

View File

@ -341,7 +341,7 @@ _hb_ot_shape_normalize (const hb_ot_shape_plan_t *plan,
{
unsigned int end;
for (end = buffer->idx + 1; end < count; end++)
if (unlikely (_hb_glyph_info_is_unicode_mark (&buffer->info[end])))
if (_hb_glyph_info_is_unicode_mark (&buffer->info[end]))
break;
if (end < count)