codegen_cranelift: Fix redundant semicolon warn

This commit is contained in:
Ömer Sinan Ağacan 2021-01-16 07:17:13 +03:00
parent 6c869d34ae
commit b681631eff
1 changed files with 1 additions and 1 deletions

View File

@ -824,7 +824,7 @@ pub(crate) fn codegen_intrinsic_call<'tcx>(
}
ty => unreachable!("bswap {}", ty),
}
};
}
let res = CValue::by_val(swap(&mut fx.bcx, arg), fx.layout_of(T));
ret.write_cvalue(fx, res);
};