We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
mod llvm_
1 parent 6741521 commit 65d7e69Copy full SHA for 65d7e69
compiler/rustc_codegen_llvm/src/lib.rs
@@ -71,14 +71,9 @@ mod debuginfo;
71
mod declare;
72
mod errors;
73
mod intrinsic;
74
-
75
-// The following is a workaround that replaces `pub mod llvm;` and that fixes issue 53912.
76
-#[path = "llvm/mod.rs"]
77
-mod llvm_;
78
-pub mod llvm {
79
- pub use super::llvm_::*;
80
-}
81
+// FIXME(Zalathar): Fix all the unreachable-pub warnings that would occur if
+// this isn't pub, then make it not pub.
+pub mod llvm;
82
mod llvm_util;
83
mod mono_item;
84
mod type_;
0 commit comments