about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2023-09-01 21:41:40 +0200
committerGitHub <noreply@github.com>2023-09-01 21:41:40 +0200
commitdb450d29814e8db1b736975dca931453502d6cd5 (patch)
treed001c05b74d8a286e95792db6312ca29b375592f
parentcf24a9fdf69118ab324c595122b997ed698d629f (diff)
parent355ba433eed96e4bea83b361264521ce42f7bf1d (diff)
downloadrust-db450d29814e8db1b736975dca931453502d6cd5.tar.gz
rust-db450d29814e8db1b736975dca931453502d6cd5.zip
Rollup merge of #115446 - klensy:fixup-stable-version, r=cuviper
fix version for abi_thiscall to 1.73.0, which was forgotten to change when stabilized and (later) moved to beta

See:

https://github.com/rust-lang/rust/pull/114562#issuecomment-1669424749
https://github.com/rust-lang/rust/pull/115056#issuecomment-1686316608
https://rust-lang.zulipchat.com/#narrow/stream/241545-t-release/topic/1.2E72.2E0/near/387695644

Should be backported to beta too.
-rw-r--r--compiler/rustc_feature/src/accepted.rs2
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.