Skip to content

Commit e54ae51

Browse files
committed
Add proper tracking issue for EFIAPI
1 parent 13d27af commit e54ae51

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/libsyntax/feature_gate/active.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,7 @@ declare_features! (
532532
(active, object_safe_for_dispatch, "1.40.0", Some(43561), None),
533533

534534
/// Allows using the `efiapi` ABI.
535-
(active, abi_efiapi, "1.40.0", Some(1), None),
535+
(active, abi_efiapi, "1.40.0", Some(65815), None),
536536

537537
// -------------------------------------------------------------------------
538538
// feature-group-end: actual feature gates

src/test/ui/feature-gates/feature-gate-abi.stderr

+7-7
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ error[E0658]: efiapi ABI is experimental and subject to change
8282
LL | extern "efiapi" fn f10() {}
8383
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
8484
|
85-
= note: for more information, see https://github.com/rust-lang/rust/issues/1
85+
= note: for more information, see https://github.com/rust-lang/rust/issues/65815
8686
= help: add `#![feature(abi_efiapi)]` to the crate attributes to enable
8787

8888
error[E0658]: intrinsics are subject to change
@@ -169,7 +169,7 @@ error[E0658]: efiapi ABI is experimental and subject to change
169169
LL | extern "efiapi" fn m10();
170170
| ^^^^^^^^^^^^^^^^^^^^^^^^^
171171
|
172-
= note: for more information, see https://github.com/rust-lang/rust/issues/1
172+
= note: for more information, see https://github.com/rust-lang/rust/issues/65815
173173
= help: add `#![feature(abi_efiapi)]` to the crate attributes to enable
174174

175175
error[E0658]: vectorcall is experimental and subject to change
@@ -239,7 +239,7 @@ error[E0658]: efiapi ABI is experimental and subject to change
239239
LL | extern "efiapi" fn dm10() {}
240240
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
241241
|
242-
= note: for more information, see https://github.com/rust-lang/rust/issues/1
242+
= note: for more information, see https://github.com/rust-lang/rust/issues/65815
243243
= help: add `#![feature(abi_efiapi)]` to the crate attributes to enable
244244

245245
error[E0658]: intrinsics are subject to change
@@ -326,7 +326,7 @@ error[E0658]: efiapi ABI is experimental and subject to change
326326
LL | extern "efiapi" fn m10() {}
327327
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
328328
|
329-
= note: for more information, see https://github.com/rust-lang/rust/issues/1
329+
= note: for more information, see https://github.com/rust-lang/rust/issues/65815
330330
= help: add `#![feature(abi_efiapi)]` to the crate attributes to enable
331331

332332
error[E0658]: intrinsics are subject to change
@@ -413,7 +413,7 @@ error[E0658]: efiapi ABI is experimental and subject to change
413413
LL | extern "efiapi" fn im10() {}
414414
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
415415
|
416-
= note: for more information, see https://github.com/rust-lang/rust/issues/1
416+
= note: for more information, see https://github.com/rust-lang/rust/issues/65815
417417
= help: add `#![feature(abi_efiapi)]` to the crate attributes to enable
418418

419419
error[E0658]: intrinsics are subject to change
@@ -500,7 +500,7 @@ error[E0658]: efiapi ABI is experimental and subject to change
500500
LL | type A10 = extern "efiapi" fn();
501501
| ^^^^^^^^^^^^^^^^^^^^
502502
|
503-
= note: for more information, see https://github.com/rust-lang/rust/issues/1
503+
= note: for more information, see https://github.com/rust-lang/rust/issues/65815
504504
= help: add `#![feature(abi_efiapi)]` to the crate attributes to enable
505505

506506
error[E0658]: intrinsics are subject to change
@@ -587,7 +587,7 @@ error[E0658]: efiapi ABI is experimental and subject to change
587587
LL | extern "efiapi" {}
588588
| ^^^^^^^^^^^^^^^^^^
589589
|
590-
= note: for more information, see https://github.com/rust-lang/rust/issues/1
590+
= note: for more information, see https://github.com/rust-lang/rust/issues/65815
591591
= help: add `#![feature(abi_efiapi)]` to the crate attributes to enable
592592

593593
error: intrinsic must be in `extern "rust-intrinsic" { ... }` block

0 commit comments

Comments
 (0)