diff options
| author | bors <bors@rust-lang.org> | 2023-05-02 00:45:04 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2023-05-02 00:45:04 +0000 |
| commit | 1cb63572d271855a5ccef79a3e10a8015d00f6ad (patch) | |
| tree | 96a9a2f55928d10c7d209c51eda0041d159a2503 /compiler/rustc_feature/src/active.rs | |
| parent | d6ddee637b62c6c4cdee90d98c3a21a1325a8e81 (diff) | |
| parent | c9a0be27ac798936c2ff40d2875c696e48b34e62 (diff) | |
| download | rust-1cb63572d271855a5ccef79a3e10a8015d00f6ad.tar.gz rust-1cb63572d271855a5ccef79a3e10a8015d00f6ad.zip | |
Auto merge of #106075 - nbdd0121:ffi-unwind, r=joshtriplett
Partial stabilisation of `c_unwind` The stabilisation report is at https://github.com/rust-lang/rust/issues/74990#issuecomment-1363473645 cc `@rust-lang/wg-ffi-unwind`
Diffstat (limited to 'compiler/rustc_feature/src/active.rs')
| -rw-r--r-- | compiler/rustc_feature/src/active.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_feature/src/active.rs b/compiler/rustc_feature/src/active.rs index 052d312d9a0..f046022b842 100644 --- a/compiler/rustc_feature/src/active.rs +++ b/compiler/rustc_feature/src/active.rs @@ -311,7 +311,7 @@ declare_features! ( (active, async_closure, "1.37.0", Some(62290), None), /// Allows async functions to be declared, implemented, and used in traits. (incomplete, async_fn_in_trait, "1.66.0", Some(91611), None), - /// Allows `extern "C-unwind" fn` to enable unwinding across ABI boundaries. + /// Treat `extern "C"` function as nounwind. (active, c_unwind, "1.52.0", Some(74990), None), /// Allows using C-variadics. (active, c_variadic, "1.34.0", Some(44930), None), |
