@@ -284,10 +284,6 @@ declare_features! (
284
284
// Allows all literals in attribute lists and values of key-value pairs.
285
285
( active, attr_literals, "1.13.0" , Some ( 34981 ) ) ,
286
286
287
- // Allows the sysV64 ABI to be specified on all platforms
288
- // instead of just the platforms on which it is the C ABI
289
- ( active, abi_sysv64, "1.13.0" , Some ( 36167 ) ) ,
290
-
291
287
// Allows untagged unions `union U { ... }`
292
288
( active, untagged_unions, "1.13.0" , Some ( 32836 ) ) ,
293
289
@@ -520,6 +516,9 @@ declare_features! (
520
516
( accepted, rvalue_static_promotion, "1.21.0" , Some ( 38865 ) ) ,
521
517
// Allow Drop types in constants (RFC 1440)
522
518
( accepted, drop_types_in_const, "1.22.0" , Some ( 33156 ) ) ,
519
+ // Allows the sysV64 ABI to be specified on all platforms
520
+ // instead of just the platforms on which it is the C ABI
521
+ ( accepted, abi_sysv64, "1.24.0" , Some ( 36167 ) ) ,
523
522
) ;
524
523
525
524
// If you change this, please modify src/doc/unstable-book as well. You must
@@ -1246,10 +1245,6 @@ impl<'a> PostExpansionVisitor<'a> {
1246
1245
gate_feature_post ! ( & self , unboxed_closures, span,
1247
1246
"rust-call ABI is subject to change" ) ;
1248
1247
} ,
1249
- Abi :: SysV64 => {
1250
- gate_feature_post ! ( & self , abi_sysv64, span,
1251
- "sysv64 ABI is experimental and subject to change" ) ;
1252
- } ,
1253
1248
Abi :: PtxKernel => {
1254
1249
gate_feature_post ! ( & self , abi_ptx, span,
1255
1250
"PTX ABIs are experimental and subject to change" ) ;
@@ -1272,6 +1267,7 @@ impl<'a> PostExpansionVisitor<'a> {
1272
1267
Abi :: Fastcall |
1273
1268
Abi :: Aapcs |
1274
1269
Abi :: Win64 |
1270
+ Abi :: SysV64 |
1275
1271
Abi :: Rust |
1276
1272
Abi :: C |
1277
1273
Abi :: System => { }
0 commit comments