summary refs log tree commit diff
path: root/compiler/rustc_codegen_ssa/src/back
diff options
context:
space:
mode:
authorAlessandro Decina <alessandro.d@gmail.com>2020-12-01 21:15:09 +0000
committerAlessandro Decina <alessandro.d@gmail.com>2021-05-23 18:03:27 +1000
commit25b3c887714f028440e5a25ea7315d737a53dbd4 (patch)
treedee0c07d983b3821efebf03e621e17f03323be14 /compiler/rustc_codegen_ssa/src/back
parent12e70929d66577f74cb6214bba5bf104e1f14aa2 (diff)
downloadrust-25b3c887714f028440e5a25ea7315d737a53dbd4.tar.gz
rust-25b3c887714f028440e5a25ea7315d737a53dbd4.zip
Fix formatting
Diffstat (limited to 'compiler/rustc_codegen_ssa/src/back')
-rw-r--r--compiler/rustc_codegen_ssa/src/back/linker.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_ssa/src/back/linker.rs b/compiler/rustc_codegen_ssa/src/back/linker.rs
index 35146d22e68..672b910e974 100644
--- a/compiler/rustc_codegen_ssa/src/back/linker.rs
+++ b/compiler/rustc_codegen_ssa/src/back/linker.rs
@@ -84,7 +84,10 @@ impl LinkerInfo {
             LinkerFlavor::PtxLinker => {
                 Box::new(PtxLinker { cmd, sess, info: self }) as Box<dyn Linker>
             }
-            LinkerFlavor::BpfLinker => Box::new(BpfLinker { cmd, sess, info: self }) as Box<dyn Linker>
+
+            LinkerFlavor::BpfLinker => {
+                Box::new(BpfLinker { cmd, sess, info: self }) as Box<dyn Linker>
+            }
         }
     }
 }