diff --git a/src/librustc/mir/interpret/value.rs b/src/librustc/mir/interpret/value.rs index c9c1d3146e3e6..4a59d845b3b42 100644 --- a/src/librustc/mir/interpret/value.rs +++ b/src/librustc/mir/interpret/value.rs @@ -262,19 +262,6 @@ impl<'tcx, Tag> Scalar { } } - /// Returns this pointer's offset from the allocation base, or from NULL (for - /// integer pointers). - #[inline] - pub fn get_ptr_offset(self, cx: &impl HasDataLayout) -> Size { - match self { - Scalar::Raw { data, size } => { - assert_eq!(size as u64, cx.pointer_size().bytes()); - Size::from_bytes(data as u64) - } - Scalar::Ptr(ptr) => ptr.offset, - } - } - #[inline] pub fn from_bool(b: bool) -> Self { Scalar::Raw { data: b as u128, size: 1 }