about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src
diff options
context:
space:
mode:
authorbjorn3 <17426603+bjorn3@users.noreply.github.com>2024-08-11 10:29:32 +0000
committerbjorn3 <17426603+bjorn3@users.noreply.github.com>2024-08-11 10:29:32 +0000
commitdb68a19b619ffc4b4ee9d1118d064d184d0bcd37 (patch)
treebc43d3538584743929cf6b8c6e03b6f1a6df7704 /compiler/rustc_codegen_llvm/src
parentd63a067bfd9d0674e637fbfc83e0cbd526fb92b5 (diff)
downloadrust-db68a19b619ffc4b4ee9d1118d064d184d0bcd37.tar.gz
rust-db68a19b619ffc4b4ee9d1118d064d184d0bcd37.zip
Fix review comments and other improvements
Diffstat (limited to 'compiler/rustc_codegen_llvm/src')
-rw-r--r--compiler/rustc_codegen_llvm/src/back/archive.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_codegen_llvm/src/back/archive.rs b/compiler/rustc_codegen_llvm/src/back/archive.rs
index 0a8728c385c..60e63462548 100644
--- a/compiler/rustc_codegen_llvm/src/back/archive.rs
+++ b/compiler/rustc_codegen_llvm/src/back/archive.rs
@@ -108,8 +108,8 @@ impl ArchiveBuilderBuilder for LlvmArchiveBuilderBuilder {
     fn new_archive_builder<'a>(&self, sess: &'a Session) -> Box<dyn ArchiveBuilder + 'a> {
         // Keeping LlvmArchiveBuilder around in case of a regression caused by using
         // ArArchiveBuilder.
-        // FIXME remove a couple of months after #128936 gets merged in case no
-        // regression is found.
+        // FIXME(#128955) remove a couple of months after #128936 gets merged in case
+        // no regression is found.
         if false {
             Box::new(LlvmArchiveBuilder { sess, additions: Vec::new() })
         } else {