Explain early abort legality

This commit is contained in:
Oliver Scherer 2018-11-14 13:28:38 +01:00
parent d3139b9c41
commit 1c08ced995

View File

@ -522,6 +522,7 @@ impl<'rt, 'a, 'mir, 'tcx, M: Machine<'a, 'mir, 'tcx>>
_ => false,
}
} => {
// bailing out for zsts is ok, since the array element type can only be int/float
if op.layout.is_zst() {
return Ok(());
}