about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2023-07-23 07:28:47 +0000
committerbors <bors@rust-lang.org>2023-07-23 07:28:47 +0000
commit0c9d1a353e117fc7644fefb6c820476b1ff34271 (patch)
treed5cc4f8f0bbfae65d776880374519df12393f27e /compiler/rustc_codegen_llvm/src
parent16cddb38d99f30f73085b4b1ab03ed19e7a7aad6 (diff)
parent8a3b7463ed657ddc3d705c44028f1fe7915edb60 (diff)
downloadrust-0c9d1a353e117fc7644fefb6c820476b1ff34271.tar.gz
rust-0c9d1a353e117fc7644fefb6c820476b1ff34271.zip
Auto merge of #2990 - RalfJung:rustup, r=RalfJung
Rustup
Diffstat (limited to 'compiler/rustc_codegen_llvm/src')
-rw-r--r--compiler/rustc_codegen_llvm/src/type_of.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_codegen_llvm/src/type_of.rs b/compiler/rustc_codegen_llvm/src/type_of.rs
index 29dd53ff763..2dbd467cc84 100644
--- a/compiler/rustc_codegen_llvm/src/type_of.rs
+++ b/compiler/rustc_codegen_llvm/src/type_of.rs
@@ -411,8 +411,8 @@ impl<'tcx> LayoutLlvmExt<'tcx> for TyAndLayout<'tcx> {
         if let Some(&pointee) = cx.pointee_infos.borrow().get(&(self.ty, offset)) {
             return pointee;
         }
-        let assume_valid_ptr = true;
-        let result = Ty::ty_and_layout_pointee_info_at(*self, cx, offset, assume_valid_ptr);
+
+        let result = Ty::ty_and_layout_pointee_info_at(*self, cx, offset);
 
         cx.pointee_infos.borrow_mut().insert((self.ty, offset), result);
         result