diff options
| author | bors <bors@rust-lang.org> | 2019-01-19 10:27:59 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2019-01-19 10:27:59 +0000 |
| commit | c87144f3caf9a1580e8734d4d1604e723a5bd6e6 (patch) | |
| tree | b8abafe076df0bf56c27099127448a5158d16424 /src/librustc_codegen_utils | |
| parent | 1bc6baec76f4540c87b23ef349c664fd427d0f53 (diff) | |
| parent | f7b9084e6e49a1bc7510fad7639c548c5d1c5c3e (diff) | |
| download | rust-c87144f3caf9a1580e8734d4d1604e723a5bd6e6.tar.gz rust-c87144f3caf9a1580e8734d4d1604e723a5bd6e6.zip | |
Auto merge of #57752 - Centril:rollup, r=Centril
Rollup of 10 pull requests Successful merges: - #57268 (Add a target option "merge-functions", and a corresponding -Z flag (works around #57356)) - #57476 (Move glob map use to query and get rid of CrateAnalysis) - #57501 (High priority resolutions for associated variants) - #57573 (Querify `entry_fn`) - #57610 (Fix nested `?` matchers) - #57634 (Remove an unused function argument) - #57653 (Make the contribution doc reference the guide more) - #57666 (Generalize `huge-enum.rs` test and expected stderr for more cross platform cases) - #57698 (Fix typo bug in DepGraph::try_mark_green().) - #57746 (Update README.md) Failed merges: r? @ghost
Diffstat (limited to 'src/librustc_codegen_utils')
| -rw-r--r-- | src/librustc_codegen_utils/lib.rs | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/librustc_codegen_utils/lib.rs b/src/librustc_codegen_utils/lib.rs index b59bca0ae0e..5f61852178d 100644 --- a/src/librustc_codegen_utils/lib.rs +++ b/src/librustc_codegen_utils/lib.rs @@ -31,6 +31,7 @@ extern crate syntax_pos; #[macro_use] extern crate rustc_data_structures; use rustc::ty::TyCtxt; +use rustc::hir::def_id::LOCAL_CRATE; pub mod link; pub mod codegen_backend; @@ -42,11 +43,9 @@ pub mod symbol_names_test; /// that actually test that compilation succeeds without /// reporting an error. pub fn check_for_rustc_errors_attr(tcx: TyCtxt) { - if let Some((id, span, _)) = *tcx.sess.entry_fn.borrow() { - let main_def_id = tcx.hir().local_def_id(id); - - if tcx.has_attr(main_def_id, "rustc_error") { - tcx.sess.span_fatal(span, "compilation successful"); + if let Some((def_id, _)) = tcx.entry_fn(LOCAL_CRATE) { + if tcx.has_attr(def_id, "rustc_error") { + tcx.sess.span_fatal(tcx.def_span(def_id), "compilation successful"); } } } |
