remove Scalar::is_null_ptr

Miri does not need it any more and it is otherwise unused
This commit is contained in:
Ralf Jung 2019-07-05 08:44:16 +02:00
parent 4ca7a349da
commit 50510e4491
1 changed files with 0 additions and 11 deletions

View File

@ -275,17 +275,6 @@ impl<'tcx, Tag> Scalar<Tag> {
}
}
#[inline]
pub fn is_null_ptr(self, cx: &impl HasDataLayout) -> bool {
match self {
Scalar::Raw { data, size } => {
assert_eq!(size as u64, cx.data_layout().pointer_size.bytes());
data == 0
},
Scalar::Ptr(_) => false,
}
}
#[inline]
pub fn from_bool(b: bool) -> Self {
Scalar::Raw { data: b as u128, size: 1 }