@@ -23,9 +23,9 @@ fn change_simple_index(slice: &[u32]) -> u32 {
2323}
2424
2525#[ cfg( not( any( cfail1, cfail4) ) ) ]
26- #[ rustc_clean( except="opt_hir_owner_nodes" , cfg="cfail2" ) ]
26+ #[ rustc_clean( except="opt_hir_owner_nodes,optimized_mir " , cfg="cfail2" ) ]
2727#[ rustc_clean( cfg="cfail3" ) ]
28- #[ rustc_clean( except="opt_hir_owner_nodes" , cfg="cfail5" ) ]
28+ #[ rustc_clean( except="opt_hir_owner_nodes,optimized_mir " , cfg="cfail5" ) ]
2929#[ rustc_clean( cfg="cfail6" ) ]
3030fn change_simple_index ( slice : & [ u32 ] ) -> u32 {
3131 slice[ 4 ]
@@ -40,9 +40,9 @@ fn change_lower_bound(slice: &[u32]) -> &[u32] {
4040}
4141
4242#[ cfg( not( any( cfail1, cfail4) ) ) ]
43- #[ rustc_clean( except="opt_hir_owner_nodes" , cfg="cfail2" ) ]
43+ #[ rustc_clean( except="opt_hir_owner_nodes,optimized_mir " , cfg="cfail2" ) ]
4444#[ rustc_clean( cfg="cfail3" ) ]
45- #[ rustc_clean( except="opt_hir_owner_nodes" , cfg="cfail5" ) ]
45+ #[ rustc_clean( except="opt_hir_owner_nodes,optimized_mir " , cfg="cfail5" ) ]
4646#[ rustc_clean( cfg="cfail6" ) ]
4747fn change_lower_bound ( slice : & [ u32 ] ) -> & [ u32 ] {
4848 & slice[ 2 ..5 ]
@@ -57,9 +57,9 @@ fn change_upper_bound(slice: &[u32]) -> &[u32] {
5757}
5858
5959#[ cfg( not( any( cfail1, cfail4) ) ) ]
60- #[ rustc_clean( except="opt_hir_owner_nodes" , cfg="cfail2" ) ]
60+ #[ rustc_clean( except="opt_hir_owner_nodes,optimized_mir " , cfg="cfail2" ) ]
6161#[ rustc_clean( cfg="cfail3" ) ]
62- #[ rustc_clean( except="opt_hir_owner_nodes" , cfg="cfail5" ) ]
62+ #[ rustc_clean( except="opt_hir_owner_nodes,optimized_mir " , cfg="cfail5" ) ]
6363#[ rustc_clean( cfg="cfail6" ) ]
6464fn change_upper_bound ( slice : & [ u32 ] ) -> & [ u32 ] {
6565 & slice[ 3 ..7 ]
@@ -74,9 +74,9 @@ fn add_lower_bound(slice: &[u32]) -> &[u32] {
7474}
7575
7676#[ cfg( not( any( cfail1, cfail4) ) ) ]
77- #[ rustc_clean( except="opt_hir_owner_nodes,typeck" , cfg="cfail2" ) ]
77+ #[ rustc_clean( except="opt_hir_owner_nodes,typeck,optimized_mir " , cfg="cfail2" ) ]
7878#[ rustc_clean( cfg="cfail3" ) ]
79- #[ rustc_clean( except="opt_hir_owner_nodes,typeck" , cfg="cfail5" ) ]
79+ #[ rustc_clean( except="opt_hir_owner_nodes,typeck,optimized_mir " , cfg="cfail5" ) ]
8080#[ rustc_clean( cfg="cfail6" ) ]
8181fn add_lower_bound ( slice : & [ u32 ] ) -> & [ u32 ] {
8282 & slice[ 3 ..4 ]
@@ -91,9 +91,9 @@ fn add_upper_bound(slice: &[u32]) -> &[u32] {
9191}
9292
9393#[ cfg( not( any( cfail1, cfail4) ) ) ]
94- #[ rustc_clean( except="opt_hir_owner_nodes,typeck" , cfg="cfail2" ) ]
94+ #[ rustc_clean( except="opt_hir_owner_nodes,typeck,optimized_mir " , cfg="cfail2" ) ]
9595#[ rustc_clean( cfg="cfail3" ) ]
96- #[ rustc_clean( except="opt_hir_owner_nodes,typeck" , cfg="cfail5" ) ]
96+ #[ rustc_clean( except="opt_hir_owner_nodes,typeck,optimized_mir " , cfg="cfail5" ) ]
9797#[ rustc_clean( cfg="cfail6" ) ]
9898fn add_upper_bound ( slice : & [ u32 ] ) -> & [ u32 ] {
9999 & slice[ 3 ..7 ]
@@ -108,9 +108,9 @@ fn change_mutability(slice: &mut [u32]) -> u32 {
108108}
109109
110110#[ cfg( not( any( cfail1, cfail4) ) ) ]
111- #[ rustc_clean( except="opt_hir_owner_nodes,typeck" , cfg="cfail2" ) ]
111+ #[ rustc_clean( except="opt_hir_owner_nodes,typeck,optimized_mir " , cfg="cfail2" ) ]
112112#[ rustc_clean( cfg="cfail3" ) ]
113- #[ rustc_clean( except="opt_hir_owner_nodes,typeck" , cfg="cfail5" ) ]
113+ #[ rustc_clean( except="opt_hir_owner_nodes,typeck,optimized_mir " , cfg="cfail5" ) ]
114114#[ rustc_clean( cfg="cfail6" ) ]
115115fn change_mutability ( slice : & mut [ u32 ] ) -> u32 {
116116 ( & slice[ 3 ..5 ] ) [ 0 ]
@@ -125,9 +125,9 @@ fn exclusive_to_inclusive_range(slice: &[u32]) -> &[u32] {
125125}
126126
127127#[ cfg( not( any( cfail1, cfail4) ) ) ]
128- #[ rustc_clean( except="opt_hir_owner_nodes,typeck" , cfg="cfail2" ) ]
128+ #[ rustc_clean( except="opt_hir_owner_nodes,typeck,optimized_mir " , cfg="cfail2" ) ]
129129#[ rustc_clean( cfg="cfail3" ) ]
130- #[ rustc_clean( except="opt_hir_owner_nodes,typeck" , cfg="cfail5" ) ]
130+ #[ rustc_clean( except="opt_hir_owner_nodes,typeck,optimized_mir " , cfg="cfail5" ) ]
131131#[ rustc_clean( cfg="cfail6" ) ]
132132fn exclusive_to_inclusive_range ( slice : & [ u32 ] ) -> & [ u32 ] {
133133 & slice[ 3 ..=7 ]
0 commit comments