File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ struct QueryModifiers {
97
97
/// A cycle error results in a delay_bug call
98
98
cycle_delay_bug : Option < Ident > ,
99
99
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
101
101
cycle_stash : Option < Ident > ,
102
102
103
103
/// 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 {
198
198
rustc_query_system:: HandleCycleError :: Fatal
199
199
} } ;
200
200
( [ ( cycle_stash) $( $rest: tt) * ] ) => { {
201
- rustc_query_system:: HandleCycleError :: DelayBug
201
+ rustc_query_system:: HandleCycleError :: Stash
202
202
} } ;
203
203
( [ ( cycle_delay_bug) $( $rest: tt) * ] ) => { {
204
204
rustc_query_system:: HandleCycleError :: DelayBug
You can’t perform that action at this time.
0 commit comments