Revert "[cff] Add an unlikely()"

This reverts commit 9ba9adb7ed.

This shows slowdown in benchmarks.
This commit is contained in:
Behdad Esfahbod 2022-05-10 14:52:40 -06:00
parent 9ba9adb7ed
commit b31ef081db

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 (unlikely (SUPER::env.is_endchar ()))
if (SUPER::env.is_endchar ())
break;
}