File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ struct QueryModifiers {
9797 /// A cycle error results in a delay_bug call
9898 cycle_delay_bug : Option < Ident > ,
9999
100- /// A cycle error results in a delay_bug call
100+ /// A cycle error results in a stashed cycle error that can be unstashed and canceled later
101101 cycle_stash : Option < Ident > ,
102102
103103 /// Don't hash the result, instead just mark a query red if it runs
Original file line number Diff line number Diff line change @@ -198,7 +198,7 @@ macro_rules! handle_cycle_error {
198198 rustc_query_system:: HandleCycleError :: Fatal
199199 } } ;
200200 ( [ ( cycle_stash) $( $rest: tt) * ] ) => { {
201- rustc_query_system:: HandleCycleError :: DelayBug
201+ rustc_query_system:: HandleCycleError :: Stash
202202 } } ;
203203 ( [ ( cycle_delay_bug) $( $rest: tt) * ] ) => { {
204204 rustc_query_system:: HandleCycleError :: DelayBug
You can’t perform that action at this time.
0 commit comments