Add a new debug_assertions instrinsic (compiler)
And in clippy
This commit is contained in:
parent
d631662a56
commit
caa23f103c
@ -767,6 +767,15 @@ fn is_fat_ptr<'tcx>(fx: &FunctionCx<'_, '_, 'tcx>, ty: Ty<'tcx>) -> bool {
|
|||||||
NullOp::OffsetOf(fields) => {
|
NullOp::OffsetOf(fields) => {
|
||||||
layout.offset_of_subfield(fx, fields.iter()).bytes()
|
layout.offset_of_subfield(fx, fields.iter()).bytes()
|
||||||
}
|
}
|
||||||
|
NullOp::DebugAssertions => {
|
||||||
|
let val = fx.tcx.sess.opts.debug_assertions;
|
||||||
|
let val = CValue::by_val(
|
||||||
|
fx.bcx.ins().iconst(types::I8, i64::try_from(val).unwrap()),
|
||||||
|
fx.layout_of(fx.tcx.types.bool),
|
||||||
|
);
|
||||||
|
lval.write_cvalue(fx, val);
|
||||||
|
return;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
let val = CValue::by_val(
|
let val = CValue::by_val(
|
||||||
fx.bcx.ins().iconst(fx.pointer_type, i64::try_from(val).unwrap()),
|
fx.bcx.ins().iconst(fx.pointer_type, i64::try_from(val).unwrap()),
|
||||||
|
Loading…
Reference in New Issue
Block a user