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 d584119 commit cd9753dCopy full SHA for cd9753d
compiler/rustc_middle/src/ty/mod.rs
@@ -2546,11 +2546,10 @@ fn typetree_from_ty<'a>(
2546
2547
if adt_def.is_struct() {
2548
let (offsets, _memory_index) = match fields {
2549
- // Manuel TODO:
2550
FieldsShape::Arbitrary { offsets: o, memory_index: m } => (o, m),
2551
FieldsShape::Array { .. } => {
2552
return TypeTree::new();
2553
- } //e.g. core::arch::x86_64::__m128i, TODO: later
+ } //e.g. core::arch::x86_64::__m128i
2554
FieldsShape::Union(_) => {
2555
2556
}
@@ -2620,7 +2619,6 @@ fn typetree_from_ty<'a>(
2620
2619
// .flatten()
2621
// .collect(),
2622
//);
2623
- // TODO
2624
visited.pop();
2625
2626
0 commit comments