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 committed Oct 23, 2018
1 parent 1d8e6dc commit 3160690
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 @@ -126,7 +126,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 3160690

Please sign in to comment.