We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12e7092 commit 25b3c88Copy full SHA for 25b3c88
compiler/rustc_codegen_ssa/src/back/linker.rs
@@ -84,7 +84,10 @@ impl LinkerInfo {
84
LinkerFlavor::PtxLinker => {
85
Box::new(PtxLinker { cmd, sess, info: self }) as Box<dyn Linker>
86
}
87
- LinkerFlavor::BpfLinker => Box::new(BpfLinker { cmd, sess, info: self }) as Box<dyn Linker>
+
88
+ LinkerFlavor::BpfLinker => {
89
+ Box::new(BpfLinker { cmd, sess, info: self }) as Box<dyn Linker>
90
+ }
91
92
93
0 commit comments