File tree Expand file tree Collapse file tree 34 files changed +121
-97
lines changed
librustc_platform_intrinsics Expand file tree Collapse file tree 34 files changed +121
-97
lines changed Original file line number Diff line number Diff line change 1919//! objects of a single type.
2020
2121#![ crate_name = "arena" ]
22- #![ unstable( feature = "rustc_private" , issue = "27812" ) ]
22+ #![ cfg_attr ( stage0 , unstable( feature = "rustc_private" , issue = "27812" ) ) ]
2323#![ crate_type = "rlib" ]
2424#![ crate_type = "dylib" ]
2525#![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
3232#![ feature( core_intrinsics) ]
3333#![ feature( dropck_eyepatch) ]
3434#![ feature( generic_param_attrs) ]
35- #![ feature( staged_api) ]
35+ #![ cfg_attr ( stage0 , feature( staged_api) ) ]
3636#![ cfg_attr( test, feature( test) ) ]
3737
3838#![ allow( deprecated) ]
Original file line number Diff line number Diff line change 1515//! [mz]: https://code.google.com/p/miniz/
1616
1717#![ crate_name = "flate" ]
18- #![ unstable( feature = "rustc_private" , issue = "27812" ) ]
18+ #![ cfg_attr ( stage0 , unstable( feature = "rustc_private" , issue = "27812" ) ) ]
1919#![ crate_type = "rlib" ]
2020#![ crate_type = "dylib" ]
2121#![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
2525#![ deny( warnings) ]
2626
2727#![ feature( libc) ]
28- #![ feature( staged_api) ]
28+ #![ cfg_attr ( stage0 , feature( staged_api) ) ]
2929#![ feature( unique) ]
3030#![ cfg_attr( test, feature( rand) ) ]
3131
Original file line number Diff line number Diff line change 1515//! generated instead.
1616
1717#![ crate_name = "fmt_macros" ]
18- #![ unstable( feature = "rustc_private" , issue = "27812" ) ]
18+ #![ cfg_attr ( stage0 , unstable( feature = "rustc_private" , issue = "27812" ) ) ]
1919#![ crate_type = "rlib" ]
2020#![ crate_type = "dylib" ]
2121#![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
2525 test( attr( deny( warnings) ) ) ) ]
2626#![ deny( warnings) ]
2727
28- #![ feature( staged_api) ]
28+ #![ cfg_attr ( stage0 , feature( staged_api) ) ]
2929#![ feature( unicode) ]
3030
3131pub use self :: Piece :: * ;
Original file line number Diff line number Diff line change 7878//! ```
7979
8080#![ crate_name = "getopts" ]
81- #![ unstable( feature = "rustc_private" ,
81+ #![ cfg_attr ( stage0 , unstable( feature = "rustc_private" ,
8282 reason = "use the crates.io `getopts` library instead" ,
83- issue = "27812" ) ]
83+ issue = "27812" ) ) ]
8484#![ crate_type = "rlib" ]
8585#![ crate_type = "dylib" ]
8686#![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
9191
9292#![ deny( missing_docs) ]
9393#![ deny( warnings) ]
94- #![ feature( staged_api) ]
94+ #![ cfg_attr ( stage0 , feature( staged_api) ) ]
9595
9696use self :: Name :: * ;
9797use self :: HasArg :: * ;
Original file line number Diff line number Diff line change 284284//! * [DOT language](http://www.graphviz.org/doc/info/lang.html)
285285
286286#![ crate_name = "graphviz" ]
287- #![ unstable( feature = "rustc_private" , issue = "27812" ) ]
288- #![ feature( staged_api) ]
287+ #![ cfg_attr ( stage0 , unstable( feature = "rustc_private" , issue = "27812" ) ) ]
288+ #![ cfg_attr ( stage0 , feature( staged_api) ) ]
289289#![ crate_type = "rlib" ]
290290#![ crate_type = "dylib" ]
291291#![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
Original file line number Diff line number Diff line change 7272//! }
7373//! ```
7474#![ crate_name = "proc_macro_plugin" ]
75- #![ unstable( feature = "rustc_private" , issue = "27812" ) ]
75+ #![ cfg_attr ( stage0 , unstable( feature = "rustc_private" , issue = "27812" ) ) ]
7676#![ feature( plugin_registrar) ]
7777#![ crate_type = "dylib" ]
7878#![ crate_type = "rlib" ]
8181 html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
8282#![ deny( warnings) ]
8383
84- #![ feature( staged_api) ]
84+ #![ cfg_attr ( stage0 , feature( staged_api) ) ]
8585#![ feature( rustc_diagnostic_macros) ]
86- #![ feature( rustc_private) ]
86+ #![ cfg_attr ( stage0 , feature( rustc_private) ) ]
8787
8888extern crate rustc_plugin;
8989extern crate syntax;
Original file line number Diff line number Diff line change 1515//! This API is completely unstable and subject to change.
1616
1717#![ crate_name = "rustc" ]
18- #![ unstable( feature = "rustc_private" , issue = "27812" ) ]
1918#![ crate_type = "dylib" ]
2019#![ crate_type = "rlib" ]
2120#![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
3635#![ feature( nonzero) ]
3736#![ feature( quote) ]
3837#![ feature( rustc_diagnostic_macros) ]
39- #![ feature( rustc_private) ]
4038#![ feature( slice_patterns) ]
4139#![ feature( specialization) ]
42- #![ feature( staged_api) ]
4340#![ feature( unboxed_closures) ]
4441#![ feature( discriminant_value) ]
4542#![ feature( sort_unstable) ]
4643#![ feature( trace_macros) ]
4744
45+ #![ cfg_attr( stage0, unstable( feature = "rustc_private" , issue = "27812" ) ) ]
46+ #![ cfg_attr( stage0, feature( rustc_private) ) ]
47+ #![ cfg_attr( stage0, feature( staged_api) ) ]
48+
4849#![ recursion_limit="128" ]
4950
5051extern crate arena;
Original file line number Diff line number Diff line change 2222//! build speedups.
2323
2424#![ crate_name = "rustc_back" ]
25- #![ unstable( feature = "rustc_private" , issue = "27812" ) ]
2625#![ crate_type = "dylib" ]
2726#![ crate_type = "rlib" ]
2827#![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
3433#![ feature( const_fn) ]
3534#![ feature( libc) ]
3635#![ feature( rand) ]
37- #![ feature( rustc_private) ]
38- #![ feature( staged_api) ]
3936#![ cfg_attr( test, feature( rand) ) ]
4037
38+ #![ cfg_attr( stage0, unstable( feature = "rustc_private" , issue = "27812" ) ) ]
39+ #![ cfg_attr( stage0, feature( rustc_private) ) ]
40+ #![ cfg_attr( stage0, feature( staged_api) ) ]
41+
4142extern crate syntax;
4243extern crate libc;
4344extern crate serialize;
Original file line number Diff line number Diff line change 1111
1212#![ crate_name = "rustc_bitflags" ]
1313#![ feature( associated_consts) ]
14- #![ feature( staged_api) ]
1514#![ crate_type = "rlib" ]
1615#![ no_std]
17- #![ unstable( feature = "rustc_private" , issue = "27812" ) ]
1816#![ deny( warnings) ]
17+ #![ cfg_attr( stage0, unstable( feature = "rustc_private" , issue = "27812" ) ) ]
18+ #![ cfg_attr( stage0, feature( staged_api) ) ]
1919
2020//! A typesafe bitmask flag generator.
2121
Original file line number Diff line number Diff line change 99// except according to those terms.
1010
1111#![ crate_name = "rustc_borrowck" ]
12- #![ unstable( feature = "rustc_private" , issue = "27812" ) ]
1312#![ crate_type = "dylib" ]
1413#![ crate_type = "rlib" ]
1514#![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
2120
2221#![ feature( quote) ]
2322#![ feature( rustc_diagnostic_macros) ]
24- #![ feature( rustc_private) ]
25- #![ feature( staged_api) ]
2623#![ feature( associated_consts) ]
2724#![ feature( nonzero) ]
25+
26+ #![ cfg_attr( stage0, unstable( feature = "rustc_private" , issue = "27812" ) ) ]
27+ #![ cfg_attr( stage0, feature( rustc_private) ) ]
28+ #![ cfg_attr( stage0, feature( staged_api) ) ]
29+
2830#[ macro_use] extern crate log;
2931#[ macro_use] extern crate syntax;
3032extern crate syntax_pos;
You can’t perform that action at this time.
0 commit comments