Remove -Zno-interleave-lints
.
Because it complicates lint implementation greatly.
This commit is contained in:
parent
33faf01690
commit
67cfe2cfbb
12 changed files with 36 additions and 194 deletions
|
@ -207,10 +207,7 @@ pub fn register_plugins<'a>(
|
|||
});
|
||||
}
|
||||
|
||||
let mut lint_store = rustc_lint::new_lint_store(
|
||||
sess.opts.unstable_opts.no_interleave_lints,
|
||||
sess.enable_internal_lints(),
|
||||
);
|
||||
let mut lint_store = rustc_lint::new_lint_store(sess.enable_internal_lints());
|
||||
register_lints(sess, &mut lint_store);
|
||||
|
||||
let registrars =
|
||||
|
|
|
@ -666,7 +666,6 @@ fn test_unstable_options_tracking_hash() {
|
|||
untracked!(mir_pretty_relative_line_numbers, true);
|
||||
untracked!(nll_facts, true);
|
||||
untracked!(no_analysis, true);
|
||||
untracked!(no_interleave_lints, true);
|
||||
untracked!(no_leak_check, true);
|
||||
untracked!(no_parallel_llvm, true);
|
||||
untracked!(parse_only, true);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue