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 ec4d15d

Browse files
committedNov 10, 2022
Stabilize raw_dylib (#[link(kind = "raw-dylib")])
This stabilizes the raw-dylib and link_ordinal features (#58713) for the remaining architecture: x86.
1 parent c716587 commit ec4d15d

File tree

46 files changed

+29
-207
lines changed

Some content is hidden

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

46 files changed

+29
-207
lines changed
 

‎compiler/rustc_feature/src/accepted.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,8 @@ declare_features! (
266266
(accepted, pub_restricted, "1.18.0", Some(32409), None),
267267
/// Allows use of the postfix `?` operator in expressions.
268268
(accepted, question_mark, "1.13.0", Some(31436), None),
269+
/// Allows the use of raw-dylibs (RFC 2627).
270+
(accepted, raw_dylib, "CURRENT_RUSTC_VERSION", Some(58713), None),
269271
/// Allows keywords to be escaped for use as identifiers.
270272
(accepted, raw_identifiers, "1.30.0", Some(48589), None),
271273
/// Allows relaxing the coherence rules such that

‎compiler/rustc_feature/src/active.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -482,8 +482,6 @@ declare_features! (
482482
(active, precise_pointer_size_matching, "1.32.0", Some(56354), None),
483483
/// Allows macro attributes on expressions, statements and non-inline modules.
484484
(active, proc_macro_hygiene, "1.30.0", Some(54727), None),
485-
/// Allows the use of raw-dylibs (RFC 2627).
486-
(active, raw_dylib, "1.65.0", Some(58713), None),
487485
/// Allows `&raw const $place_expr` and `&raw mut $place_expr` expressions.
488486
(active, raw_ref_op, "1.41.0", Some(64490), None),
489487
/// Allows using the `#[register_tool]` attribute.

0 commit comments

Comments
 (0)
Please sign in to comment.