diff options
| author | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2024-07-07 17:07:36 +0000 |
|---|---|---|
| committer | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2024-07-07 17:08:55 +0000 |
| commit | cd3f2f68c042e2957fff85ca89ba10cb0f2f12b3 (patch) | |
| tree | 2533b3ab3927f032c4756645728242b81c6ddb18 /compiler/rustc_codegen_ssa | |
| parent | 72223e205d91e4d689718a9f61b3f6c0346d19e8 (diff) | |
| download | rust-cd3f2f68c042e2957fff85ca89ba10cb0f2f12b3.tar.gz rust-cd3f2f68c042e2957fff85ca89ba10cb0f2f12b3.zip | |
Fix review comments
Diffstat (limited to 'compiler/rustc_codegen_ssa')
| -rw-r--r-- | compiler/rustc_codegen_ssa/src/back/archive.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_ssa/src/back/archive.rs b/compiler/rustc_codegen_ssa/src/back/archive.rs index f673675bdbb..ae649cd77c4 100644 --- a/compiler/rustc_codegen_ssa/src/back/archive.rs +++ b/compiler/rustc_codegen_ssa/src/back/archive.rs @@ -292,7 +292,7 @@ impl<'a> ArArchiveBuilder<'a> { &entries, archive_kind, false, - self.sess.target.arch == "arm64ec", + /* is_ec = */ self.sess.target.arch == "arm64ec", )?; let any_entries = !entries.is_empty(); |
