Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 119307a

Browse files
committedDec 31, 2019
Auto merge of #67764 - Centril:rollup-ycbq3os, r=Centril
Rollup of 6 pull requests Successful merges: - #67574 (Extract `rustc_ast_lowering` crate from `rustc`) - #67685 (Constify Result) - #67702 (Add symbol normalization for proc_macro_server.) - #67730 (Cleanup pattern type checking, fix diagnostics bugs (+ improvements)) - #67744 (parser: reduce diversity in error handling mechanisms) - #67748 (Use function attribute "frame-pointer" instead of "no-frame-pointer-elim") Failed merges: r? @ghost
2 parents 769eb21 + 40579d1 commit 119307a

File tree

86 files changed

+731
-509
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+731
-509
lines changed
 

‎Cargo.lock

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3358,6 +3358,22 @@ dependencies = [
33583358
"core",
33593359
]
33603360

3361+
[[package]]
3362+
name = "rustc_ast_lowering"
3363+
version = "0.0.0"
3364+
dependencies = [
3365+
"log",
3366+
"rustc",
3367+
"rustc_data_structures",
3368+
"rustc_error_codes",
3369+
"rustc_errors",
3370+
"rustc_index",
3371+
"rustc_span",
3372+
"rustc_target",
3373+
"smallvec 1.0.0",
3374+
"syntax",
3375+
]
3376+
33613377
[[package]]
33623378
name = "rustc_builtin_macros"
33633379
version = "0.0.0"
@@ -3578,6 +3594,7 @@ dependencies = [
35783594
"once_cell",
35793595
"rustc",
35803596
"rustc-rayon",
3597+
"rustc_ast_lowering",
35813598
"rustc_builtin_macros",
35823599
"rustc_codegen_llvm",
35833600
"rustc_codegen_ssa",
@@ -3783,6 +3800,7 @@ dependencies = [
37833800
"bitflags",
37843801
"log",
37853802
"rustc",
3803+
"rustc_ast_lowering",
37863804
"rustc_data_structures",
37873805
"rustc_error_codes",
37883806
"rustc_errors",

‎src/libcore/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@
7676
#![feature(const_fn_union)]
7777
#![feature(const_generics)]
7878
#![feature(const_ptr_offset_from)]
79+
#![feature(const_result)]
7980
#![feature(const_type_name)]
8081
#![feature(custom_inner_attributes)]
8182
#![feature(decl_macro)]

0 commit comments

Comments
 (0)