diff options
| author | The Miri Cronjob Bot <miri@cron.bot> | 2024-06-21 05:14:59 +0000 |
|---|---|---|
| committer | The Miri Cronjob Bot <miri@cron.bot> | 2024-06-21 05:14:59 +0000 |
| commit | 9d7de1fbdbf57b5d21e8a841c306e7d1f228ef37 (patch) | |
| tree | d62e86b319c4f189d03be09be1a3deb4b46a93fe /tests/codegen/wasm_exceptions.rs | |
| parent | 121b06bd0593369477a70dfee156f10055ca7638 (diff) | |
| parent | 553a69030e5a086eb3841d020db8c9c463948c72 (diff) | |
Merge from rustc
Diffstat (limited to 'tests/codegen/wasm_exceptions.rs')
| -rw-r--r-- | tests/codegen/wasm_exceptions.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/codegen/wasm_exceptions.rs b/tests/codegen/wasm_exceptions.rs index 3910850e03a..719499dd8ea 100644 --- a/tests/codegen/wasm_exceptions.rs +++ b/tests/codegen/wasm_exceptions.rs @@ -3,12 +3,12 @@ #![crate_type = "lib"] #![feature(core_intrinsics)] -#![feature(rustc_attrs)] -extern "C" { +extern "C-unwind" { fn may_panic(); +} - #[rustc_nounwind] +extern "C" { fn log_number(number: usize); } |
