Skip to content

Commit 7842b80

Browse files
committed
Rebase fallout.
1 parent 11a999e commit 7842b80

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

compiler/rustc_ast_lowering/src/expr.rs

+1
Original file line numberDiff line numberDiff line change
@@ -423,6 +423,7 @@ impl<'hir> LoweringContext<'_, 'hir> {
423423
let if_expr = self.expr(span, if_kind, ThinVec::new());
424424
let block = self.block_expr(self.arena.alloc(if_expr));
425425
let span = self.lower_span(span.with_hi(cond.span.hi()));
426+
let opt_label = self.lower_label(opt_label);
426427
hir::ExprKind::Loop(block, opt_label, hir::LoopSource::While, span)
427428
}
428429

src/test/incremental/hashes/if_expressions.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ pub fn add_else_branch_if_let(x: Option<u32>) -> u32 {
214214
#[cfg(not(any(cfail1,cfail4)))]
215215
#[rustc_clean(cfg="cfail2", except="hir_owner_nodes,typeck")]
216216
#[rustc_clean(cfg="cfail3")]
217-
#[rustc_clean(cfg="cfail5", except="hir_owner_nodes,typeck")]
217+
#[rustc_clean(cfg="cfail5", except="hir_owner_nodes,typeck,optimized_mir")]
218218
#[rustc_clean(cfg="cfail6")]
219219
pub fn add_else_branch_if_let(x: Option<u32>) -> u32 {
220220
let mut ret = 1;

src/test/incremental/hashes/while_loops.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ pub fn change_continue_label() {
214214
#[cfg(not(any(cfail1,cfail4)))]
215215
#[rustc_clean(cfg="cfail2", except="hir_owner_nodes,typeck")]
216216
#[rustc_clean(cfg="cfail3")]
217-
#[rustc_clean(cfg="cfail5", except="hir_owner_nodes,typeck")]
217+
#[rustc_clean(cfg="cfail5", except="hir_owner_nodes,typeck,optimized_mir")]
218218
#[rustc_clean(cfg="cfail6")]
219219
pub fn change_continue_label() {
220220
let mut _x = 0;

src/tools/clippy/clippy_lints/src/methods/manual_split_once.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ fn parse_iter_usage(
182182
},
183183
_,
184184
) => {
185-
let parent_span = e.span.parent().unwrap();
185+
let parent_span = e.span.parent_callsite().unwrap();
186186
if parent_span.ctxt() == ctxt {
187187
(Some(UnwrapKind::QuestionMark), parent_span)
188188
} else {

src/tools/clippy/clippy_lints/src/module_style.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ impl EarlyLintPass for ModStyle {
120120
correct.push("mod.rs");
121121
cx.struct_span_lint(
122122
SELF_NAMED_MODULE_FILES,
123-
Span::new(file.start_pos, file.start_pos, SyntaxContext::root()),
123+
Span::new(file.start_pos, file.start_pos, SyntaxContext::root(), None),
124124
|build| {
125125
let mut lint =
126126
build.build(&format!("`mod.rs` files are required, found `{}`", path.display()));
@@ -167,7 +167,7 @@ fn check_self_named_mod_exists(cx: &EarlyContext<'_>, path: &Path, file: &Source
167167

168168
cx.struct_span_lint(
169169
MOD_MODULE_FILES,
170-
Span::new(file.start_pos, file.start_pos, SyntaxContext::root()),
170+
Span::new(file.start_pos, file.start_pos, SyntaxContext::root(), None),
171171
|build| {
172172
let mut lint = build.build(&format!("`mod.rs` files are not allowed, found `{}`", path.display()));
173173
lint.help(&format!("move `{}` to `{}`", path.display(), mod_file.display(),));

0 commit comments

Comments
 (0)