diff options
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/feature_gate.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs index e70d93ae85a..50b2ac3369c 100644 --- a/src/libsyntax/feature_gate.rs +++ b/src/libsyntax/feature_gate.rs @@ -484,6 +484,8 @@ declare_features! ( // #[alloc_error_handler] (active, alloc_error_handler, "1.29.0", Some(51540), None), + + (active, abi_amdgpu_kernel, "1.29.0", Some(51575), None), ); declare_features! ( @@ -1439,6 +1441,10 @@ impl<'a> PostExpansionVisitor<'a> { gate_feature_post!(&self, abi_x86_interrupt, span, "x86-interrupt ABI is experimental and subject to change"); }, + Abi::AmdGpuKernel => { + gate_feature_post!(&self, abi_amdgpu_kernel, span, + "amdgpu-kernel ABI is experimental and subject to change"); + }, // Stable Abi::Cdecl | Abi::Stdcall | |
