diff options
| author | bjorn3 <bjorn3@users.noreply.github.com> | 2019-10-12 14:49:03 +0200 |
|---|---|---|
| committer | bjorn3 <bjorn3@users.noreply.github.com> | 2019-10-13 14:35:14 +0200 |
| commit | 5f6ddb94a619ba12f83549a65d0e6167e2c08c1c (patch) | |
| tree | 9ed083da565e6aa20501da549ef754490f3bfcb0 /src/librustc_codegen_llvm/lib.rs | |
| parent | 5f203d5988e86a23d806c3d16c3a24bcb99610e3 (diff) | |
| download | rust-5f6ddb94a619ba12f83549a65d0e6167e2c08c1c.tar.gz rust-5f6ddb94a619ba12f83549a65d0e6167e2c08c1c.zip | |
Move span_invalid_monomorphization_error from cg_llvm to cg_ssa
The associated long diagnostic didn't get registered before
Diffstat (limited to 'src/librustc_codegen_llvm/lib.rs')
| -rw-r--r-- | src/librustc_codegen_llvm/lib.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/librustc_codegen_llvm/lib.rs b/src/librustc_codegen_llvm/lib.rs index e675e976358..fde04a68457 100644 --- a/src/librustc_codegen_llvm/lib.rs +++ b/src/librustc_codegen_llvm/lib.rs @@ -38,7 +38,7 @@ extern crate rustc_fs_util; extern crate rustc_driver as _; #[macro_use] extern crate log; -#[macro_use] extern crate syntax; +extern crate syntax; extern crate syntax_pos; extern crate rustc_errors as errors; @@ -64,8 +64,6 @@ use rustc::util::common::ErrorReported; use rustc_codegen_ssa::ModuleCodegen; use rustc_codegen_utils::codegen_backend::CodegenBackend; -mod error_codes; - mod back { pub mod archive; pub mod bytecode; |
