Update cranelift, faerie and target-lexicon

This commit is contained in:
bjorn3 2019-09-28 17:59:27 +02:00
parent 8cee28db3e
commit 58a9b648e8
7 changed files with 80 additions and 70 deletions

View file

@ -98,7 +98,7 @@ pub fn maybe_codegen<'tcx>(
// Optimize `val >> 64`, because compiler_builtins uses it to deconstruct an 128bit
// integer into its lsb and msb.
// https://github.com/rust-lang-nursery/compiler-builtins/blob/79a6a1603d5672cbb9187ff41ff4d9b5048ac1cb/src/int/mod.rs#L217
if let Some(64) = resolve_value_imm(&fx.bcx.func, rhs_val) {
if let Some(64) = resolve_value_imm(fx.bcx.func, rhs_val) {
let (lhs_lsb, lhs_msb) = fx.bcx.ins().isplit(lhs_val);
let all_zeros = fx.bcx.ins().iconst(types::I64, 0);
let val = match (bin_op, is_signed) {