Skip to content

Commit 2ddd0fe

Browse files
Apply suggestions from code review
1 parent 21ec4cc commit 2ddd0fe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

compiler/rustc_macros/src/query.rs

+1-1
Original file line numberDiff line numberDiff 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

compiler/rustc_query_impl/src/plumbing.rs

+1-1
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)