Skip to content

Commit 3e03895

Browse files
committed
rustc_target: drop duplicate code
Drop duplicate helper methods on `Layout`, which are already implemented on `LayoutS`. Note that `Layout` has a `Deref` implementation to `LayoutS`, so all accessors are automatically redirected. The methods are identical and have been copied to `rustc_abi` in: commit 390a637 Author: hamidreza kalbasi <hamidrezakalbasi@protonmail.com> Date: Mon Nov 7 00:36:11 2022 +0330 move things from rustc_target::abi to rustc_abi This commit left behind the original implementation. Drop it now. Signed-off-by: David Rheinsberg <david@readahead.eu>
1 parent 1a44b45 commit 3e03895

File tree

1 file changed

+0
-21
lines changed
  • compiler/rustc_target/src/abi

1 file changed

+0
-21
lines changed

compiler/rustc_target/src/abi/mod.rs

-21
Original file line numberDiff line numberDiff line change
@@ -140,24 +140,3 @@ impl<'a, Ty> TyAndLayout<'a, Ty> {
140140
offset
141141
}
142142
}
143-
144-
impl<'a, Ty> TyAndLayout<'a, Ty> {
145-
/// Returns `true` if the layout corresponds to an unsized type.
146-
pub fn is_unsized(&self) -> bool {
147-
self.abi.is_unsized()
148-
}
149-
150-
#[inline]
151-
pub fn is_sized(&self) -> bool {
152-
self.abi.is_sized()
153-
}
154-
155-
/// Returns `true` if the type is a ZST and not unsized.
156-
pub fn is_zst(&self) -> bool {
157-
match self.abi {
158-
Abi::Scalar(_) | Abi::ScalarPair(..) | Abi::Vector { .. } => false,
159-
Abi::Uninhabited => self.size.bytes() == 0,
160-
Abi::Aggregate { sized } => sized && self.size.bytes() == 0,
161-
}
162-
}
163-
}

0 commit comments

Comments
 (0)