Skip to content

Commit 1398fe7

Browse files
committed
Address more PR feedback
1 parent bb8d6f7 commit 1398fe7

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

compiler/rustc_mir_transform/src/instsimplify.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ impl<'tcx> InstSimplifyContext<'tcx, '_> {
121121
if a.const_.ty().is_bool() { a.const_.try_to_bool() } else { None }
122122
}
123123

124-
/// Transform "&(*a)" ==> "a".
124+
/// Transform `&(*a)` ==> `a`.
125125
fn simplify_ref_deref(&self, source_info: &SourceInfo, rvalue: &mut Rvalue<'tcx>) {
126126
if let Rvalue::Ref(_, _, place) = rvalue {
127127
if let Some((base, ProjectionElem::Deref)) = place.as_ref().last_projection() {
@@ -141,7 +141,7 @@ impl<'tcx> InstSimplifyContext<'tcx, '_> {
141141
}
142142
}
143143

144-
/// Transform "Len([_; N])" ==> "N".
144+
/// Transform `Len([_; N])` ==> `N`.
145145
fn simplify_len(&self, source_info: &SourceInfo, rvalue: &mut Rvalue<'tcx>) {
146146
if let Rvalue::Len(ref place) = *rvalue {
147147
let place_ty = place.ty(self.local_decls, self.tcx).ty;
@@ -157,7 +157,7 @@ impl<'tcx> InstSimplifyContext<'tcx, '_> {
157157
}
158158
}
159159

160-
/// Transform "Aggregate(RawPtr, \[p, ()\])" ==> "Cast(PtrToPtr, p)".
160+
/// Transform `Aggregate(RawPtr, [p, ()])` ==> `Cast(PtrToPtr, p)`.
161161
fn simplify_ptr_aggregate(&self, source_info: &SourceInfo, rvalue: &mut Rvalue<'tcx>) {
162162
if let Rvalue::Aggregate(box AggregateKind::RawPtr(pointee_ty, mutability), fields) = rvalue
163163
{

library/core/src/intrinsics.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -2791,7 +2791,8 @@ pub unsafe fn vtable_align(_ptr: *const ()) -> usize {
27912791
#[rustc_intrinsic_must_be_overridden]
27922792
#[cfg(not(bootstrap))]
27932793
pub const fn aggregate_raw_ptr<P: AggregateRawPtr<D, Metadata = M>, D, M>(_data: D, _meta: M) -> P {
2794-
// No fallback because `libcore` doesn't want to know the layout
2794+
// To implement a fallback we'd have to assume the layout of the pointer,
2795+
// but the whole point of this intrinsic is that we shouldn't do that.
27952796
unreachable!()
27962797
}
27972798

0 commit comments

Comments
 (0)