about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJubilee Young <workingjubilee@gmail.com>2024-10-27 22:32:40 -0700
committerJubilee Young <workingjubilee@gmail.com>2024-10-27 22:32:40 -0700
commit988f49d04f0d9811aee75c4d54e8fe8f21835ca6 (patch)
tree449e1715dc17f8e24b3a8ab8a5488b014cb927be
parenta29a8f523ee863842fedf40cb4621df4b548f949 (diff)
downloadrust-988f49d04f0d9811aee75c4d54e8fe8f21835ca6.tar.gz
rust-988f49d04f0d9811aee75c4d54e8fe8f21835ca6.zip
cg_clif: Rename LayoutS to LayoutData
-rw-r--r--src/abi/comments.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/abi/comments.rs b/src/abi/comments.rs
index a318cae1722..daea789ee3e 100644
--- a/src/abi/comments.rs
+++ b/src/abi/comments.rs
@@ -79,7 +79,7 @@ pub(super) fn add_local_place_comments<'tcx>(
         return;
     }
     let TyAndLayout { ty, layout } = place.layout();
-    let rustc_target::abi::LayoutS { size, align, .. } = layout.0.0;
+    let rustc_abi::LayoutData { size, align, .. } = layout.0.0;
 
     let (kind, extra) = place.debug_comment();