about summary refs log tree commit diff
path: root/src/test/codegen/asm-may_unwind.rs
diff options
context:
space:
mode:
authorcynecx <me@cynecx.net>2021-11-28 19:35:31 +0100
committercynecx <me@cynecx.net>2021-12-03 23:51:49 +0100
commit7f870be4b57586f0ecea23c155228209b02e3445 (patch)
tree95b861709e64ddb3d6fae412cc70d84904300c34 /src/test/codegen/asm-may_unwind.rs
parent021a8d80ebeeb4cf96213745cc591be9216ffe44 (diff)
downloadrust-7f870be4b57586f0ecea23c155228209b02e3445.tar.gz
rust-7f870be4b57586f0ecea23c155228209b02e3445.zip
fix inline asm test because of missing attribute
Diffstat (limited to 'src/test/codegen/asm-may_unwind.rs')
-rw-r--r--src/test/codegen/asm-may_unwind.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/codegen/asm-may_unwind.rs b/src/test/codegen/asm-may_unwind.rs
index 267eab7d105..ea3be011097 100644
--- a/src/test/codegen/asm-may_unwind.rs
+++ b/src/test/codegen/asm-may_unwind.rs
@@ -16,9 +16,9 @@ impl Drop for Foo {
 }
 
 // CHECK-LABEL: @may_unwind
-// CHECK: invoke void asm sideeffect alignstack unwind
 #[no_mangle]
 pub unsafe fn may_unwind() {
     let _m = Foo;
+    // CHECK: invoke void asm sideeffect alignstack inteldialect unwind ""
     asm!("", options(may_unwind));
 }