diff options
| author | cynecx <me@cynecx.net> | 2021-11-28 19:35:31 +0100 |
|---|---|---|
| committer | cynecx <me@cynecx.net> | 2021-12-03 23:51:49 +0100 |
| commit | 7f870be4b57586f0ecea23c155228209b02e3445 (patch) | |
| tree | 95b861709e64ddb3d6fae412cc70d84904300c34 /src/test | |
| parent | 021a8d80ebeeb4cf96213745cc591be9216ffe44 (diff) | |
| download | rust-7f870be4b57586f0ecea23c155228209b02e3445.tar.gz rust-7f870be4b57586f0ecea23c155228209b02e3445.zip | |
fix inline asm test because of missing attribute
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/codegen/asm-may_unwind.rs | 2 |
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)); } |
