Skip to content

Commit 7f870be

Browse files
committed
fix inline asm test because of missing attribute
1 parent 021a8d8 commit 7f870be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/codegen/asm-may_unwind.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ impl Drop for Foo {
1616
}
1717

1818
// CHECK-LABEL: @may_unwind
19-
// CHECK: invoke void asm sideeffect alignstack unwind
2019
#[no_mangle]
2120
pub unsafe fn may_unwind() {
2221
let _m = Foo;
22+
// CHECK: invoke void asm sideeffect alignstack inteldialect unwind ""
2323
asm!("", options(may_unwind));
2424
}

0 commit comments

Comments
 (0)