Skip to content

Commit c9a0be2

Browse files
committed
Change ABI order in is_stable
1 parent de492a3 commit c9a0be2

File tree

1 file changed

+11
-12
lines changed
  • compiler/rustc_target/src/spec

1 file changed

+11
-12
lines changed

compiler/rustc_target/src/spec/abi.rs

+11-12
Original file line numberDiff line numberDiff line change
@@ -148,10 +148,9 @@ pub fn is_enabled(
148148
pub fn is_stable(name: &str) -> Result<(), AbiDisabled> {
149149
match name {
150150
// Stable
151-
"Rust" | "C" | "cdecl" | "stdcall" | "fastcall" | "aapcs" | "win64" | "sysv64"
152-
| "system" | "efiapi" | "C-unwind" | "cdecl-unwind" | "stdcall-unwind"
153-
| "fastcall-unwind" | "aapcs-unwind" | "win64-unwind" | "sysv64-unwind"
154-
| "system-unwind" => Ok(()),
151+
"Rust" | "C" | "C-unwind" | "cdecl" | "cdecl-unwind" | "stdcall" | "stdcall-unwind"
152+
| "fastcall" | "fastcall-unwind" | "aapcs" | "aapcs-unwind" | "win64" | "win64-unwind"
153+
| "sysv64" | "sysv64-unwind" | "system" | "system-unwind" | "efiapi" => Ok(()),
155154
"rust-intrinsic" => Err(AbiDisabled::Unstable {
156155
feature: sym::intrinsics,
157156
explain: "intrinsics are subject to change",
@@ -164,10 +163,18 @@ pub fn is_stable(name: &str) -> Result<(), AbiDisabled> {
164163
feature: sym::abi_vectorcall,
165164
explain: "vectorcall is experimental and subject to change",
166165
}),
166+
"vectorcall-unwind" => Err(AbiDisabled::Unstable {
167+
feature: sym::abi_vectorcall,
168+
explain: "vectorcall-unwind ABI is experimental and subject to change",
169+
}),
167170
"thiscall" => Err(AbiDisabled::Unstable {
168171
feature: sym::abi_thiscall,
169172
explain: "thiscall is experimental and subject to change",
170173
}),
174+
"thiscall-unwind" => Err(AbiDisabled::Unstable {
175+
feature: sym::abi_thiscall,
176+
explain: "thiscall-unwind ABI is experimental and subject to change",
177+
}),
171178
"rust-call" => Err(AbiDisabled::Unstable {
172179
feature: sym::unboxed_closures,
173180
explain: "rust-call ABI is subject to change",
@@ -204,14 +211,6 @@ pub fn is_stable(name: &str) -> Result<(), AbiDisabled> {
204211
feature: sym::abi_c_cmse_nonsecure_call,
205212
explain: "C-cmse-nonsecure-call ABI is experimental and subject to change",
206213
}),
207-
"thiscall-unwind" => Err(AbiDisabled::Unstable {
208-
feature: sym::abi_thiscall,
209-
explain: "thiscall-unwind ABI is experimental and subject to change",
210-
}),
211-
"vectorcall-unwind" => Err(AbiDisabled::Unstable {
212-
feature: sym::abi_vectorcall,
213-
explain: "vectorcall-unwind ABI is experimental and subject to change",
214-
}),
215214
"wasm" => Err(AbiDisabled::Unstable {
216215
feature: sym::wasm_abi,
217216
explain: "wasm ABI is experimental and subject to change",

0 commit comments

Comments
 (0)