We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a57f73d commit c1f5350Copy full SHA for c1f5350
compiler/rustc_codegen_llvm/src/back/archive.rs
@@ -106,9 +106,7 @@ pub struct LlvmArchiveBuilderBuilder;
106
107
impl ArchiveBuilderBuilder for LlvmArchiveBuilderBuilder {
108
fn new_archive_builder<'a>(&self, sess: &'a Session) -> Box<dyn ArchiveBuilder + 'a> {
109
- // FIXME use ArArchiveBuilder on most targets again once reading thin archives is
110
- // implemented
111
- if true {
+ if false {
112
Box::new(LlvmArchiveBuilder { sess, additions: Vec::new() })
113
} else {
114
Box::new(ArArchiveBuilder::new(sess, &LLVM_OBJECT_READER))
0 commit comments