You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Inline small functions, especially wrappers
We already had `#[inline]` throughout a lot of the code, but notably some
functions which simply wrap inherent methods were not inlined. That means
external references will get a full function call, when they could have been
optimized to as little as one opcode.
This PR inlines all functions that look tiny enough for this to matter.
Fixes#218.
remexre
pushed a commit
to remexre/num
that referenced
this issue
Jun 1, 2017
Such as the
PrimInt
implementations for built-in integers.See briansmith/ring#199 (comment)
The text was updated successfully, but these errors were encountered: