We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bc4a1c commit 364fd6aCopy full SHA for 364fd6a
compiler/rustc_middle/src/ty/mod.rs
@@ -2410,11 +2410,10 @@ fn typetree_from_ty<'a>(
2410
2411
if adt_def.is_struct() {
2412
let (offsets, _memory_index) = match fields {
2413
- // Manuel TODO:
2414
FieldsShape::Arbitrary { offsets: o, memory_index: m } => (o, m),
2415
FieldsShape::Array { .. } => {
2416
return TypeTree::new();
2417
- } //e.g. core::arch::x86_64::__m128i, TODO: later
+ } //e.g. core::arch::x86_64::__m128i
2418
FieldsShape::Union(_) => {
2419
2420
}
@@ -2484,7 +2483,6 @@ fn typetree_from_ty<'a>(
2484
2483
// .flatten()
2485
// .collect(),
2486
//);
2487
- // TODO
2488
visited.pop();
2489
2490
0 commit comments