@@ -1122,14 +1122,6 @@ pub fn build_target_config(opts: &Options, sp: &Handler) -> Config {
1122
1122
pub enum OptionStability {
1123
1123
Stable ,
1124
1124
1125
- // FIXME: historically there were some options which were either `-Z` or
1126
- // required the `-Z unstable-options` flag, which were all intended
1127
- // to be unstable. Unfortunately we didn't actually gate usage of
1128
- // these options on the stable compiler, so we still allow them there
1129
- // today. There are some warnings printed out about this in the
1130
- // driver.
1131
- UnstableButNotReally ,
1132
-
1133
1125
Unstable ,
1134
1126
}
1135
1127
@@ -1148,17 +1140,9 @@ impl RustcOptGroup {
1148
1140
RustcOptGroup { opt_group : g, stability : OptionStability :: Stable }
1149
1141
}
1150
1142
1151
- #[ allow( dead_code) ] // currently we have no "truly unstable" options
1152
1143
pub fn unstable ( g : getopts:: OptGroup ) -> RustcOptGroup {
1153
1144
RustcOptGroup { opt_group : g, stability : OptionStability :: Unstable }
1154
1145
}
1155
-
1156
- fn unstable_bnr ( g : getopts:: OptGroup ) -> RustcOptGroup {
1157
- RustcOptGroup {
1158
- opt_group : g,
1159
- stability : OptionStability :: UnstableButNotReally ,
1160
- }
1161
- }
1162
1146
}
1163
1147
1164
1148
// The `opt` local module holds wrappers around the `getopts` API that
@@ -1180,7 +1164,6 @@ mod opt {
1180
1164
1181
1165
fn stable ( g : getopts:: OptGroup ) -> R { RustcOptGroup :: stable ( g) }
1182
1166
fn unstable ( g : getopts:: OptGroup ) -> R { RustcOptGroup :: unstable ( g) }
1183
- fn unstable_bnr ( g : getopts:: OptGroup ) -> R { RustcOptGroup :: unstable_bnr ( g) }
1184
1167
1185
1168
pub fn opt_s ( a : S , b : S , c : S , d : S ) -> R {
1186
1169
stable ( getopts:: optopt ( a, b, c, d) )
@@ -1213,24 +1196,6 @@ mod opt {
1213
1196
pub fn flagmulti ( a : S , b : S , c : S ) -> R {
1214
1197
unstable ( getopts:: optflagmulti ( a, b, c) )
1215
1198
}
1216
-
1217
- // Do not use these functions for any new options added to the compiler, all
1218
- // new options should use the `*_u` variants above to be truly unstable.
1219
- pub fn opt_ubnr ( a : S , b : S , c : S , d : S ) -> R {
1220
- unstable_bnr ( getopts:: optopt ( a, b, c, d) )
1221
- }
1222
- pub fn multi_ubnr ( a : S , b : S , c : S , d : S ) -> R {
1223
- unstable_bnr ( getopts:: optmulti ( a, b, c, d) )
1224
- }
1225
- pub fn flag_ubnr ( a : S , b : S , c : S ) -> R {
1226
- unstable_bnr ( getopts:: optflag ( a, b, c) )
1227
- }
1228
- pub fn flagopt_ubnr ( a : S , b : S , c : S , d : S ) -> R {
1229
- unstable_bnr ( getopts:: optflagopt ( a, b, c, d) )
1230
- }
1231
- pub fn flagmulti_ubnr ( a : S , b : S , c : S ) -> R {
1232
- unstable_bnr ( getopts:: optflagmulti ( a, b, c) )
1233
- }
1234
1199
}
1235
1200
1236
1201
/// Returns the "short" subset of the rustc command line options,
@@ -1296,7 +1261,7 @@ pub fn rustc_optgroups() -> Vec<RustcOptGroup> {
1296
1261
opt:: multi_s ( "" , "extern" , "Specify where an external rust library is located" ,
1297
1262
"NAME=PATH" ) ,
1298
1263
opt:: opt_s ( "" , "sysroot" , "Override the system root" , "PATH" ) ,
1299
- opt:: multi_ubnr ( "Z" , "" , "Set internal debugging options" , "FLAG" ) ,
1264
+ opt:: multi ( "Z" , "" , "Set internal debugging options" , "FLAG" ) ,
1300
1265
opt:: opt_s ( "" , "error-format" ,
1301
1266
"How errors and other messages are produced" ,
1302
1267
"human|json" ) ,
@@ -1305,28 +1270,20 @@ pub fn rustc_optgroups() -> Vec<RustcOptGroup> {
1305
1270
always = always colorize output;
1306
1271
never = never colorize output" , "auto|always|never" ) ,
1307
1272
1308
- opt:: flagopt_ubnr ( "" , "pretty" ,
1309
- "Pretty-print the input instead of compiling;
1310
- valid types are: `normal` (un-annotated source),
1311
- `expanded` (crates expanded), or
1312
- `expanded,identified` (fully parenthesized, AST nodes with IDs)." ,
1313
- "TYPE" ) ,
1314
- opt:: flagopt_ubnr ( "" , "unpretty" ,
1315
- "Present the input source, unstable (and less-pretty) variants;
1316
- valid types are any of the types for `--pretty`, as well as:
1317
- `flowgraph=<nodeid>` (graphviz formatted flowgraph for node),
1318
- `everybody_loops` (all function bodies replaced with `loop {}`),
1319
- `hir` (the HIR), `hir,identified`, or
1320
- `hir,typed` (HIR with types for each node)." ,
1321
- "TYPE" ) ,
1322
-
1323
- // new options here should **not** use the `_ubnr` functions, all new
1324
- // unstable options should use the short variants to indicate that they
1325
- // are truly unstable. All `_ubnr` flags are just that way because they
1326
- // were so historically.
1327
- //
1328
- // You may also wish to keep this comment at the bottom of this list to
1329
- // ensure that others see it.
1273
+ opt:: flagopt ( "" , "pretty" ,
1274
+ "Pretty-print the input instead of compiling;
1275
+ valid types are: `normal` (un-annotated source),
1276
+ `expanded` (crates expanded), or
1277
+ `expanded,identified` (fully parenthesized, AST nodes with IDs)." ,
1278
+ "TYPE" ) ,
1279
+ opt:: flagopt ( "" , "unpretty" ,
1280
+ "Present the input source, unstable (and less-pretty) variants;
1281
+ valid types are any of the types for `--pretty`, as well as:
1282
+ `flowgraph=<nodeid>` (graphviz formatted flowgraph for node),
1283
+ `everybody_loops` (all function bodies replaced with `loop {}`),
1284
+ `hir` (the HIR), `hir,identified`, or
1285
+ `hir,typed` (HIR with types for each node)." ,
1286
+ "TYPE" ) ,
1330
1287
] ) ;
1331
1288
opts
1332
1289
}
@@ -1704,7 +1661,7 @@ pub mod nightly_options {
1704
1661
use getopts;
1705
1662
use syntax:: feature_gate:: UnstableFeatures ;
1706
1663
use super :: { ErrorOutputType , OptionStability , RustcOptGroup } ;
1707
- use session:: { early_error, early_warn } ;
1664
+ use session:: early_error;
1708
1665
1709
1666
pub fn is_unstable_enabled ( matches : & getopts:: Matches ) -> bool {
1710
1667
is_nightly_build ( ) && matches. opt_strs ( "Z" ) . iter ( ) . any ( |x| * x == "unstable-options" )
@@ -1746,15 +1703,6 @@ pub mod nightly_options {
1746
1703
nightly compiler", opt_name) ;
1747
1704
early_error ( ErrorOutputType :: default ( ) , & msg) ;
1748
1705
}
1749
- OptionStability :: UnstableButNotReally => {
1750
- let msg = format ! ( "the option `{}` is unstable and should \
1751
- only be used on the nightly compiler, but \
1752
- it is currently accepted for backwards \
1753
- compatibility; this will soon change, \
1754
- see issue #31847 for more details",
1755
- opt_name) ;
1756
- early_warn ( ErrorOutputType :: default ( ) , & msg) ;
1757
- }
1758
1706
OptionStability :: Stable => { }
1759
1707
}
1760
1708
}
0 commit comments