Skip to content

Commit 26dccad

Browse files
Allow "C-unwind" fn to have C variadics
1 parent a0f01c3 commit 26dccad

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

compiler/rustc_ast_passes/src/ast_validation.rs

+1
Original file line numberDiff line numberDiff line change
@@ -637,6 +637,7 @@ impl<'a> AstValidator<'a> {
637637
(Some(FnCtxt::Foreign), _) => return,
638638
(Some(FnCtxt::Free), Some(header)) => match header.ext {
639639
Extern::Explicit(StrLit { symbol_unescaped: sym::C, .. }, _)
640+
| Extern::Explicit(StrLit { symbol_unescaped: sym::C_dash_unwind, .. }, _)
640641
| Extern::Implicit(_)
641642
if matches!(header.safety, Safety::Unsafe(_)) =>
642643
{

compiler/rustc_span/src/symbol.rs

+1
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,7 @@ symbols! {
167167
Break,
168168
C,
169169
CStr,
170+
C_dash_unwind: "C-unwind",
170171
CallOnceFuture,
171172
CallRefFuture,
172173
Capture,

tests/ui/abi/variadic-ffi.rs

+8
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ pub unsafe extern "C" fn test_valist_forward(n: u64, mut ap: ...) -> f64 {
1414
rust_valist_interesting_average(n, ap.as_va_list())
1515
}
1616

17+
pub unsafe extern "C-unwind" fn c_unwind_can_forward(n: u64, mut ap: ...) -> f64 {
18+
rust_valist_interesting_average(n, ap.as_va_list())
19+
}
20+
1721
pub unsafe extern "C" fn test_va_copy(_: u64, mut ap: ...) {
1822
let mut ap2 = ap.clone();
1923
assert_eq!(rust_valist_interesting_average(2, ap2.as_va_list()) as i64, 30);
@@ -72,6 +76,10 @@ pub fn main() {
7276
assert_eq!(test_valist_forward(2, 10i64, 10f64, 20i64, 20f64) as i64, 30);
7377
}
7478

79+
unsafe {
80+
assert_eq!(c_unwind_can_forward(2, 10i64, 10f64, 20i64, 20f64) as i64, 30);
81+
}
82+
7583
unsafe {
7684
test_va_copy(4, 10i64, 10f64, 20i64, 20f64, 30i64, 30f64, 40i64, 40f64);
7785
}

0 commit comments

Comments
 (0)