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 __ashldi3 for a left 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_lshift(long longleft, long longright) {
returnleft << right;
}
The text was updated successfully, but these errors were encountered:
GCC can emit a call for
__ashldi3
for a left shift betweenint64_t
when using-Os
. GCC won't emit this call when using-Ofast
, but it can still be good to have.To recreate:
The text was updated successfully, but these errors were encountered: