From 34f8e62c6bcf46aba647493bbc9e6da430d8b064 Mon Sep 17 00:00:00 2001 From: Luqman Aden Date: Tue, 11 Oct 2016 22:10:54 -0400 Subject: [PATCH] Remove outdated FIXME: #10604 was fixed by #11717. --- src/librustc_trans/adt.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/librustc_trans/adt.rs b/src/librustc_trans/adt.rs index 4d3361c1873f..d028dd7e7b5a 100644 --- a/src/librustc_trans/adt.rs +++ b/src/librustc_trans/adt.rs @@ -245,8 +245,6 @@ fn generic_type_of<'a, 'tcx>(cx: &CrateContext<'a, 'tcx>, // So we start with the discriminant, pad it up to the alignment with // more of its own type, then use alignment-sized ints to get the rest // of the size. - // - // FIXME #10604: this breaks when vector types are present. let size = size.bytes(); let align = align.abi(); let discr_ty = Type::from_integer(cx, discr);