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
GCC can emit a call for __ashrdi3 for a right shift between int64_t when using -Os. GCC won't emit this call when using -Ofast, but it can still be good to have.
To recreate:
long long__ll_rshift(long longleft, long longright) {
returnleft >> right;
}