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
After RET = _3 * _10, the value of RET should be 10752_isize (0x2A00). Casting to u8 is 0, so the program should print 0. This is what LLVM backend and Miri prints.
However, with rustc_codegen_cranelift at -Copt-level=3 it prints 42
Fuzzer generated custom MIR:
After
RET = _3 * _10
, the value ofRET
should be10752_isize
(0x2A00). Casting tou8
is 0, so the program should print 0. This is what LLVM backend and Miri prints.However, with
rustc_codegen_cranelift
at-Copt-level=3
it prints 42The text was updated successfully, but these errors were encountered: