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 ccab2da commit 6660dd6Copy full SHA for 6660dd6
compiler/rustc_middle/src/ty/mod.rs
@@ -2412,11 +2412,10 @@ fn typetree_from_ty<'a>(
2412
2413
if adt_def.is_struct() {
2414
let (offsets, _memory_index) = match fields {
2415
- // Manuel TODO:
2416
FieldsShape::Arbitrary { offsets: o, memory_index: m } => (o, m),
2417
FieldsShape::Array { .. } => {
2418
return TypeTree::new();
2419
- } //e.g. core::arch::x86_64::__m128i, TODO: later
+ } //e.g. core::arch::x86_64::__m128i
2420
FieldsShape::Union(_) => {
2421
2422
}
@@ -2486,7 +2485,6 @@ fn typetree_from_ty<'a>(
2486
2485
// .flatten()
2487
// .collect(),
2488
//);
2489
- // TODO
2490
visited.pop();
2491
2492
0 commit comments