@@ -34,7 +34,7 @@ pub fn change_field_value_struct_like() -> Enum {
3434}
3535
3636#[ cfg( not( cfail1) ) ]
37- #[ rustc_clean( cfg="cfail2" , except="HirBody ,optimized_mir,mir_built" ) ]
37+ #[ rustc_clean( cfg="cfail2" , except="hir_owner_items ,optimized_mir,mir_built" ) ]
3838#[ rustc_clean( cfg="cfail3" ) ]
3939pub fn change_field_value_struct_like ( ) -> Enum {
4040 Enum :: Struct {
@@ -57,7 +57,7 @@ pub fn change_field_order_struct_like() -> Enum {
5757}
5858
5959#[ cfg( not( cfail1) ) ]
60- #[ rustc_clean( cfg="cfail2" , except="HirBody ,typeck_tables_of" ) ]
60+ #[ rustc_clean( cfg="cfail2" , except="hir_owner_items ,typeck_tables_of" ) ]
6161#[ rustc_clean( cfg="cfail3" ) ]
6262// FIXME(michaelwoerister):Interesting. I would have thought that that changes the MIR. And it
6363// would if it were not all constants
@@ -96,7 +96,7 @@ pub fn change_constructor_path_struct_like() {
9696}
9797
9898#[ cfg( not( cfail1) ) ]
99- #[ rustc_clean( cfg="cfail2" , except="HirBody ,optimized_mir,mir_built,typeck_tables_of" ) ]
99+ #[ rustc_clean( cfg="cfail2" , except="hir_owner_items ,optimized_mir,mir_built,typeck_tables_of" ) ]
100100#[ rustc_clean( cfg="cfail3" ) ]
101101pub fn change_constructor_path_struct_like ( ) {
102102 let _ = Enum2 :: Struct {
@@ -119,7 +119,7 @@ pub fn change_constructor_variant_struct_like() {
119119}
120120
121121#[ cfg( not( cfail1) ) ]
122- #[ rustc_clean( cfg="cfail2" , except="HirBody ,optimized_mir,mir_built" ) ]
122+ #[ rustc_clean( cfg="cfail2" , except="hir_owner_items ,optimized_mir,mir_built" ) ]
123123#[ rustc_clean( cfg="cfail3" ) ]
124124pub fn change_constructor_variant_struct_like ( ) {
125125 let _ = Enum2 :: Struct2 {
@@ -139,7 +139,7 @@ pub mod change_constructor_path_indirectly_struct_like {
139139
140140 #[ rustc_clean(
141141 cfg="cfail2" ,
142- except="fn_sig,Hir,HirBody ,optimized_mir,mir_built,\
142+ except="fn_sig,Hir,hir_owner_items ,optimized_mir,mir_built,\
143143 typeck_tables_of"
144144 ) ]
145145 #[ rustc_clean( cfg="cfail3" ) ]
@@ -161,7 +161,7 @@ pub mod change_constructor_variant_indirectly_struct_like {
161161 #[ cfg( not( cfail1) ) ]
162162 use super :: Enum2 :: Struct2 as Variant ;
163163
164- #[ rustc_clean( cfg="cfail2" , except="HirBody ,optimized_mir,mir_built" ) ]
164+ #[ rustc_clean( cfg="cfail2" , except="hir_owner_items ,optimized_mir,mir_built" ) ]
165165 #[ rustc_clean( cfg="cfail3" ) ]
166166 pub fn function ( ) -> Enum2 {
167167 Variant {
@@ -180,7 +180,7 @@ pub fn change_field_value_tuple_like() -> Enum {
180180}
181181
182182#[ cfg( not( cfail1) ) ]
183- #[ rustc_clean( cfg="cfail2" , except="HirBody ,optimized_mir,mir_built" ) ]
183+ #[ rustc_clean( cfg="cfail2" , except="hir_owner_items ,optimized_mir,mir_built" ) ]
184184#[ rustc_clean( cfg="cfail3" ) ]
185185pub fn change_field_value_tuple_like ( ) -> Enum {
186186 Enum :: Tuple ( 0 , 1 , 3 )
@@ -197,7 +197,7 @@ pub fn change_constructor_path_tuple_like() {
197197#[ cfg( not( cfail1) ) ]
198198#[ rustc_clean(
199199 cfg="cfail2" ,
200- except="HirBody ,optimized_mir,mir_built,typeck_tables_of"
200+ except="hir_owner_items ,optimized_mir,mir_built,typeck_tables_of"
201201) ]
202202#[ rustc_clean( cfg="cfail3" ) ]
203203pub fn change_constructor_path_tuple_like ( ) {
@@ -215,7 +215,7 @@ pub fn change_constructor_variant_tuple_like() {
215215#[ cfg( not( cfail1) ) ]
216216#[ rustc_clean(
217217 cfg="cfail2" ,
218- except="HirBody ,optimized_mir,mir_built,typeck_tables_of"
218+ except="hir_owner_items ,optimized_mir,mir_built,typeck_tables_of"
219219) ]
220220#[ rustc_clean( cfg="cfail3" ) ]
221221pub fn change_constructor_variant_tuple_like ( ) {
@@ -232,7 +232,7 @@ pub mod change_constructor_path_indirectly_tuple_like {
232232
233233 #[ rustc_clean(
234234 cfg="cfail2" ,
235- except="fn_sig,Hir,HirBody ,optimized_mir,mir_built,\
235+ except="fn_sig,Hir,hir_owner_items ,optimized_mir,mir_built,\
236236 typeck_tables_of"
237237 ) ]
238238 #[ rustc_clean( cfg="cfail3" ) ]
@@ -251,7 +251,7 @@ pub mod change_constructor_variant_indirectly_tuple_like {
251251 #[ cfg( not( cfail1) ) ]
252252 use super :: Enum2 :: Tuple2 as Variant ;
253253
254- #[ rustc_clean( cfg="cfail2" , except="HirBody ,optimized_mir,mir_built,typeck_tables_of" ) ]
254+ #[ rustc_clean( cfg="cfail2" , except="hir_owner_items ,optimized_mir,mir_built,typeck_tables_of" ) ]
255255 #[ rustc_clean( cfg="cfail3" ) ]
256256 pub fn function ( ) -> Enum2 {
257257 Variant ( 0 , 1 , 2 )
@@ -278,7 +278,7 @@ pub fn change_constructor_path_c_like() {
278278}
279279
280280#[ cfg( not( cfail1) ) ]
281- #[ rustc_clean( cfg="cfail2" , except="HirBody ,optimized_mir,mir_built,typeck_tables_of" ) ]
281+ #[ rustc_clean( cfg="cfail2" , except="hir_owner_items ,optimized_mir,mir_built,typeck_tables_of" ) ]
282282#[ rustc_clean( cfg="cfail3" ) ]
283283pub fn change_constructor_path_c_like ( ) {
284284 let _ = Clike2 :: B ;
@@ -293,7 +293,7 @@ pub fn change_constructor_variant_c_like() {
293293}
294294
295295#[ cfg( not( cfail1) ) ]
296- #[ rustc_clean( cfg="cfail2" , except="HirBody ,optimized_mir,mir_built" ) ]
296+ #[ rustc_clean( cfg="cfail2" , except="hir_owner_items ,optimized_mir,mir_built" ) ]
297297#[ rustc_clean( cfg="cfail3" ) ]
298298pub fn change_constructor_variant_c_like ( ) {
299299 let _ = Clike :: C ;
@@ -309,7 +309,7 @@ pub mod change_constructor_path_indirectly_c_like {
309309
310310 #[ rustc_clean(
311311 cfg="cfail2" ,
312- except="fn_sig,Hir,HirBody ,optimized_mir,mir_built,\
312+ except="fn_sig,Hir,hir_owner_items ,optimized_mir,mir_built,\
313313 typeck_tables_of"
314314 ) ]
315315 #[ rustc_clean( cfg="cfail3" ) ]
@@ -328,7 +328,7 @@ pub mod change_constructor_variant_indirectly_c_like {
328328 #[ cfg( not( cfail1) ) ]
329329 use super :: Clike :: B as Variant ;
330330
331- #[ rustc_clean( cfg="cfail2" , except="HirBody ,optimized_mir,mir_built" ) ]
331+ #[ rustc_clean( cfg="cfail2" , except="hir_owner_items ,optimized_mir,mir_built" ) ]
332332 #[ rustc_clean( cfg="cfail3" ) ]
333333 pub fn function ( ) -> Clike {
334334 Variant
0 commit comments