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
We could add generation code that splits a > 64 bit literal into two 64 bit literals and combines them back together. Alternatively, a hacky solution would be this: https://stackoverflow.com/a/33331273.
C does only provide literal suffices for up to 64 bit large constants (
ULL
).We sometimes need bitmasks which are 65 bits or larger:
0x1ffffffffffffffff
The only workaround I have in mind for this is building the literal in an
etiss_int128 temp
variable manually...The text was updated successfully, but these errors were encountered: