[cff] Add an unlikely()

This commit is contained in:
Behdad Esfahbod 2022-05-10 14:42:50 -06:00
parent 9edb03ac7a
commit 9ba9adb7ed
1 changed files with 1 additions and 1 deletions

View File

@ -888,7 +888,7 @@ struct cs_interpreter_t : interpreter_t<ENV>
OPSET::process_op (SUPER::env.fetch_op (), SUPER::env, param);
if (unlikely (SUPER::env.in_error ()))
return false;
if (SUPER::env.is_endchar ())
if (unlikely (SUPER::env.is_endchar ()))
break;
}