Skip to content

Commit 8841e9e

Browse files
committedAug 13, 2021
Fix tidy
1 parent f7237f1 commit 8841e9e

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed
 

‎rustfmt.toml

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ ignore = [
1919
"library/backtrace",
2020
"library/stdarch",
2121
"compiler/rustc_codegen_cranelift",
22+
"compiler/rustc_codegen_gcc",
2223
"src/doc/book",
2324
"src/doc/edition-guide",
2425
"src/doc/embedded-book",

‎src/bootstrap/check.rs

+7-2
Original file line numberDiff line numberDiff line change
@@ -237,11 +237,16 @@ impl Step for CodegenBackend {
237237
const DEFAULT: bool = true;
238238

239239
fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
240-
run.paths(&["compiler/rustc_codegen_cranelift", "rustc_codegen_cranelift"])
240+
run.paths(&[
241+
"compiler/rustc_codegen_cranelift",
242+
"rustc_codegen_cranelift",
243+
"compiler/rustc_codegen_gcc",
244+
"rustc_codegen_gcc",
245+
])
241246
}
242247

243248
fn make_run(run: RunConfig<'_>) {
244-
for &backend in &[INTERNER.intern_str("cranelift")] {
249+
for &backend in &[INTERNER.intern_str("cranelift"), INTERNER.intern_str("gcc")] {
245250
run.builder.ensure(CodegenBackend { target: run.target, backend });
246251
}
247252
}

‎src/tools/tidy/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ fn filter_dirs(path: &Path) -> bool {
5656
let skip = [
5757
"tidy-test-file",
5858
"compiler/rustc_codegen_cranelift",
59+
"compiler/rustc_codegen_gcc",
5960
"src/llvm-project",
6061
"library/backtrace",
6162
"library/stdarch",

0 commit comments

Comments
 (0)