about summary refs log tree commit diff
path: root/compiler/rustc_codegen_ssa/src
diff options
context:
space:
mode:
authorbjorn3 <17426603+bjorn3@users.noreply.github.com>2024-07-07 17:07:36 +0000
committerbjorn3 <17426603+bjorn3@users.noreply.github.com>2024-07-07 17:08:55 +0000
commitcd3f2f68c042e2957fff85ca89ba10cb0f2f12b3 (patch)
tree2533b3ab3927f032c4756645728242b81c6ddb18 /compiler/rustc_codegen_ssa/src
parent72223e205d91e4d689718a9f61b3f6c0346d19e8 (diff)
downloadrust-cd3f2f68c042e2957fff85ca89ba10cb0f2f12b3.tar.gz
rust-cd3f2f68c042e2957fff85ca89ba10cb0f2f12b3.zip
Fix review comments
Diffstat (limited to 'compiler/rustc_codegen_ssa/src')
-rw-r--r--compiler/rustc_codegen_ssa/src/back/archive.rs2
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();