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 Sep 6, 2018
1 parent 847e0bc commit 29c349b
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 @@ -127,7 +127,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 29c349b

Please sign in to comment.