1
Fork 0

Add two FIXME's

This commit is contained in:
bjorn3 2020-01-04 12:33:39 +01:00
parent 82213a3b7f
commit c9034e54e5

View file

@ -424,8 +424,10 @@ pub fn codegen_intrinsic_call<'tcx>(
let byte_amount = fx.bcx.ins().imul(count, elem_size);
if intrinsic.ends_with("_nonoverlapping") {
// FIXME emit_small_memcpy
fx.bcx.call_memcpy(fx.module.target_config(), dst, src, byte_amount);
} else {
// FIXME emit_small_memmove
fx.bcx.call_memmove(fx.module.target_config(), dst, src, byte_amount);
}
};