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 abb201b commit ba1126aCopy full SHA for ba1126a
compiler/rustc_codegen_ssa/src/back/linker.rs
@@ -1441,10 +1441,10 @@ impl<'a> L4Bender<'a> {
1441
'"' | '\'' => quoted = !quoted,
1442
_ => arg.push(character),
1443
};
1444
- if arg.len() > 0 {
1445
- cmd.arg(&arg);
1446
- arg.clear();
1447
- }
+ }
+ if arg.len() > 0 {
+ cmd.arg(&arg);
+ arg.clear();
1448
}
1449
1450
0 commit comments