Skip to content

Commit

Permalink
remove Scalar::is_null_ptr
Browse files Browse the repository at this point in the history
Miri does not need it any more and it is otherwise unused
  • Loading branch information
RalfJung committed Jul 5, 2019
1 parent 4ca7a34 commit 50510e4
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions src/librustc/mir/interpret/value.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down

0 comments on commit 50510e4

Please sign in to comment.