about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbjorn3 <17426603+bjorn3@users.noreply.github.com>2022-08-24 17:06:47 +0000
committerbjorn3 <17426603+bjorn3@users.noreply.github.com>2022-08-24 17:06:47 +0000
commite62e1d4347198e17cfb1fe6fec531cac3b223019 (patch)
treee27ab9df86566a8d93a0c8b491ebffc711fb1ea2
parent716101c01db55a8c12c3aa48848751458229d73a (diff)
downloadrust-e62e1d4347198e17cfb1fe6fec531cac3b223019.tar.gz
rust-e62e1d4347198e17cfb1fe6fec531cac3b223019.zip
Rustfmt
-rw-r--r--compiler/rustc_codegen_cranelift/build_system/tests.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_cranelift/build_system/tests.rs b/compiler/rustc_codegen_cranelift/build_system/tests.rs
index dc83b10958e..e21397cece8 100644
--- a/compiler/rustc_codegen_cranelift/build_system/tests.rs
+++ b/compiler/rustc_codegen_cranelift/build_system/tests.rs
@@ -465,7 +465,8 @@ impl TestRunner {
         out_dir.push("out");
 
         let is_native = host_triple == target_triple;
-        let jit_supported = target_triple.contains("x86_64") && is_native && !host_triple.contains("windows");
+        let jit_supported =
+            target_triple.contains("x86_64") && is_native && !host_triple.contains("windows");
 
         let mut rust_flags = env::var("RUSTFLAGS").ok().unwrap_or("".to_string());
         let mut run_wrapper = Vec::new();