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 __lshrdi3 for a right shift between uint64_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__ull_rshift(unsigned long longleft, unsigned long longright) {
returnleft >> right;
}