@@ -34,7 +34,7 @@ pub enum MemPlaceMeta<Tag = AllocId> {
3434}
3535
3636#[ cfg( all( target_arch = "x86_64" , target_pointer_width = "64" ) ) ]
37- //FIXME rustc_data_structures::static_assert_size!(MemPlaceMeta, 24);
37+ rustc_data_structures:: static_assert_size!( MemPlaceMeta , 24 ) ;
3838
3939impl < Tag : Provenance > std:: fmt:: Debug for MemPlaceMeta < Tag > {
4040 fn fmt ( & self , f : & mut std:: fmt:: Formatter < ' _ > ) -> std:: fmt:: Result {
@@ -87,7 +87,7 @@ pub struct MemPlace<Tag = AllocId> {
8787}
8888
8989#[ cfg( all( target_arch = "x86_64" , target_pointer_width = "64" ) ) ]
90- //FIXME rustc_data_structures::static_assert_size!(MemPlace, 56 );
90+ rustc_data_structures:: static_assert_size!( MemPlace , 48 ) ;
9191
9292impl < Tag : Provenance > std:: fmt:: Debug for MemPlace < Tag > {
9393 fn fmt ( & self , f : & mut std:: fmt:: Formatter < ' _ > ) -> std:: fmt:: Result {
@@ -111,7 +111,7 @@ pub enum Place<Tag = AllocId> {
111111}
112112
113113#[ cfg( all( target_arch = "x86_64" , target_pointer_width = "64" ) ) ]
114- //FIXME rustc_data_structures::static_assert_size!(Place, 64 );
114+ rustc_data_structures:: static_assert_size!( Place , 56 ) ;
115115
116116impl < Tag : Provenance > std:: fmt:: Debug for Place < Tag > {
117117 fn fmt ( & self , f : & mut std:: fmt:: Formatter < ' _ > ) -> std:: fmt:: Result {
@@ -132,7 +132,7 @@ pub struct PlaceTy<'tcx, Tag = AllocId> {
132132}
133133
134134#[ cfg( all( target_arch = "x86_64" , target_pointer_width = "64" ) ) ]
135- //FIXME rustc_data_structures::static_assert_size!(PlaceTy<'_>, 80 );
135+ rustc_data_structures:: static_assert_size!( PlaceTy <' _>, 72 ) ;
136136
137137impl < ' tcx , Tag : Provenance > std:: fmt:: Debug for PlaceTy < ' tcx , Tag > {
138138 fn fmt ( & self , f : & mut std:: fmt:: Formatter < ' _ > ) -> std:: fmt:: Result {
@@ -157,7 +157,7 @@ pub struct MPlaceTy<'tcx, Tag = AllocId> {
157157}
158158
159159#[ cfg( all( target_arch = "x86_64" , target_pointer_width = "64" ) ) ]
160- //FIXME rustc_data_structures::static_assert_size!(MPlaceTy<'_>, 72 );
160+ rustc_data_structures:: static_assert_size!( MPlaceTy <' _>, 64 ) ;
161161
162162impl < ' tcx , Tag : Provenance > std:: fmt:: Debug for MPlaceTy < ' tcx , Tag > {
163163 fn fmt ( & self , f : & mut std:: fmt:: Formatter < ' _ > ) -> std:: fmt:: Result {
0 commit comments