diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2023-08-07 16:47:57 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-07 16:47:57 +0200 |
| commit | 06daa9e263db87b3c5d4d80110938130db846183 (patch) | |
| tree | f27b3fcf891ad4542fcdb87f09a057f6b266260d /tests/codegen | |
| parent | 1d82946e52d8220da0859d80e68cb0cc3266cc5e (diff) | |
| parent | 3f3262e592c51b0f39925a7a716d29b7a8e37ff4 (diff) | |
| download | rust-06daa9e263db87b3c5d4d80110938130db846183.tar.gz rust-06daa9e263db87b3c5d4d80110938130db846183.zip | |
Rollup merge of #114562 - Trolldemorted:thiscall, r=oli-obk
stabilize abi_thiscall Closes https://github.com/rust-lang/rust/issues/42202, stabilizing the use of the "thiscall" ABI. FCP was substituted by a poll, and the poll has been accepted.
Diffstat (limited to 'tests/codegen')
| -rw-r--r-- | tests/codegen/unwind-abis/thiscall-unwind-abi.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/codegen/unwind-abis/thiscall-unwind-abi.rs b/tests/codegen/unwind-abis/thiscall-unwind-abi.rs index 7e81367fc5b..0a02755a2cd 100644 --- a/tests/codegen/unwind-abis/thiscall-unwind-abi.rs +++ b/tests/codegen/unwind-abis/thiscall-unwind-abi.rs @@ -1,7 +1,7 @@ // needs-llvm-components: x86 // compile-flags: --target=i686-pc-windows-msvc --crate-type=rlib -Cno-prepopulate-passes #![no_core] -#![feature(no_core, lang_items, c_unwind, abi_thiscall)] +#![feature(no_core, lang_items, c_unwind)] #[lang="sized"] trait Sized { } |
