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
For the expression (x >> amt) != 0, for values of amt between 8 and 31, LLVM emits a cmp against an immediate instead of a shift right and comparison. The compare against immediate instruction takes 7 bytes to encode; the shift right instruction takes 4 bytes
For the expression (x >> amt) != 0, for values of amt between 8 and 31, LLVM emits a cmp against an immediate instead of a shift right and comparison. The compare against immediate instruction takes 7 bytes to encode; the shift right instruction takes 4 bytes
https://godbolt.org/z/hhbsf8she
For the expression
(x >> amt) != 0
, for values ofamt
between 8 and 31, LLVM emits acmp
against an immediate instead of a shift right and comparison. The compare against immediate instruction takes 7 bytes to encode; the shift right instruction takes 4 bytesThe text was updated successfully, but these errors were encountered: