diff options
| author | klensy <klensy@users.noreply.github.com> | 2023-09-01 19:46:09 +0300 |
|---|---|---|
| committer | klensy <klensy@users.noreply.github.com> | 2023-09-01 19:46:09 +0300 |
| commit | 355ba433eed96e4bea83b361264521ce42f7bf1d (patch) | |
| tree | b0c1ddebeab06c39357dad6803a29cfe6c669f18 | |
| parent | 1accf068d8fa22f29437651283ea1f27058ed8ac (diff) | |
| download | rust-355ba433eed96e4bea83b361264521ce42f7bf1d.tar.gz rust-355ba433eed96e4bea83b361264521ce42f7bf1d.zip | |
fix version for abi_thiscall to 1.73.0, which was forgotten to change when stabilized
| -rw-r--r-- | compiler/rustc_feature/src/accepted.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_feature/src/accepted.rs b/compiler/rustc_feature/src/accepted.rs index b1f74643b69..afcf30d0b29 100644 --- a/compiler/rustc_feature/src/accepted.rs +++ b/compiler/rustc_feature/src/accepted.rs @@ -54,7 +54,7 @@ declare_features! ( /// instead of just the platforms on which it is the C ABI. (accepted, abi_sysv64, "1.24.0", Some(36167), None), /// Allows using the `thiscall` ABI. - (accepted, abi_thiscall, "1.19.0", None, None), + (accepted, abi_thiscall, "1.73.0", None, None), /// Allows using ADX intrinsics from `core::arch::{x86, x86_64}`. (accepted, adx_target_feature, "1.61.0", Some(44839), None), /// Allows explicit discriminants on non-unit enum variants. |
