diff options
| author | Gary Guo <gary@garyguo.net> | 2024-06-08 13:13:30 +0100 |
|---|---|---|
| committer | Gary Guo <gary@garyguo.net> | 2024-06-19 13:54:55 +0100 |
| commit | 9d2b932d71b2fbeb31a83f9aa17b21f4d8f4b7a6 (patch) | |
| tree | 2dde100f7a6fa7ec2dd8900278ab03727b5b19c0 | |
| parent | da8ac73d910a446e796f511c0dda97e49d14f044 (diff) | |
| download | rust-9d2b932d71b2fbeb31a83f9aa17b21f4d8f4b7a6.tar.gz rust-9d2b932d71b2fbeb31a83f9aa17b21f4d8f4b7a6.zip | |
Fix broken aarch64 unwind test
| -rw-r--r-- | tests/ui/asm/aarch64/may_unwind.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/asm/aarch64/may_unwind.rs b/tests/ui/asm/aarch64/may_unwind.rs index a483008c364..01d52f9022d 100644 --- a/tests/ui/asm/aarch64/may_unwind.rs +++ b/tests/ui/asm/aarch64/may_unwind.rs @@ -16,7 +16,7 @@ impl Drop for Foo<'_> { } } -extern "C" fn panicky() { +extern "C-unwind" fn panicky() { resume_unwind(Box::new(())); } |
