We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
// force-host
1 parent b4e504f commit f385589Copy full SHA for f385589
src/tools/compiletest/src/runtest.rs
@@ -1829,10 +1829,10 @@ impl<'test> TestCx<'test> {
1829
rustc.args(self.split_maybe_args(&self.config.host_rustcflags));
1830
} else {
1831
rustc.args(self.split_maybe_args(&self.config.target_rustcflags));
1832
- }
1833
- if !is_rustdoc {
1834
- if let Some(ref linker) = self.config.linker {
1835
- rustc.arg(format!("-Clinker={}", linker));
+ if !is_rustdoc {
+ if let Some(ref linker) = self.config.linker {
+ rustc.arg(format!("-Clinker={}", linker));
+ }
1836
}
1837
1838
0 commit comments