Skip to content

Commit

Permalink
Work around to fix issue rust-lang#53912
Browse files Browse the repository at this point in the history
  • Loading branch information
denismerigoux authored and eddyb committed Nov 16, 2018
1 parent 5a9e6b8 commit c76fc3d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/librustc_codegen_llvm/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,10 @@ mod debuginfo;
mod declare;
mod glue;
mod intrinsic;
pub mod llvm;

// The following is a work around that replaces `pub mod llvm;` and that fixes issue 53912.
#[path = "llvm/mod.rs"] mod llvm_; pub mod llvm { pub use super::llvm_::*; }

mod llvm_util;
mod metadata;
mod meth;
Expand Down

0 comments on commit c76fc3d

Please sign in to comment.