about summary refs log tree commit diff
path: root/tests/codegen/wasm_exceptions.rs
diff options
context:
space:
mode:
authorThe Miri Cronjob Bot <miri@cron.bot>2024-06-21 05:14:59 +0000
committerThe Miri Cronjob Bot <miri@cron.bot>2024-06-21 05:14:59 +0000
commit9d7de1fbdbf57b5d21e8a841c306e7d1f228ef37 (patch)
treed62e86b319c4f189d03be09be1a3deb4b46a93fe /tests/codegen/wasm_exceptions.rs
parent121b06bd0593369477a70dfee156f10055ca7638 (diff)
parent553a69030e5a086eb3841d020db8c9c463948c72 (diff)
Merge from rustc
Diffstat (limited to 'tests/codegen/wasm_exceptions.rs')
-rw-r--r--tests/codegen/wasm_exceptions.rs6
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);
 }