We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a9e6b8 commit c76fc3dCopy full SHA for c76fc3d
src/librustc_codegen_llvm/lib.rs
@@ -116,7 +116,10 @@ mod debuginfo;
116
mod declare;
117
mod glue;
118
mod intrinsic;
119
-pub mod llvm;
+
120
+// The following is a work around that replaces `pub mod llvm;` and that fixes issue 53912.
121
+#[path = "llvm/mod.rs"] mod llvm_; pub mod llvm { pub use super::llvm_::*; }
122
123
mod llvm_util;
124
mod metadata;
125
mod meth;
0 commit comments