diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2023-06-23 19:39:57 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-23 19:39:57 +0200 |
| commit | ff596144bee89d0f7a6a7f22914ffe799b9ef5b9 (patch) | |
| tree | b49615219d4dec63ad53dc1ef385f0f6d3748d91 /tests/codegen | |
| parent | 54d6738a8df74382c439e1dfb9ce4e2382d7742e (diff) | |
| parent | fd4726f74041672c20e9e0753058bf7712dcff19 (diff) | |
| download | rust-ff596144bee89d0f7a6a7f22914ffe799b9ef5b9.tar.gz rust-ff596144bee89d0f7a6a7f22914ffe799b9ef5b9.zip | |
Rollup merge of #112616 - ferrocene:pa-more-test-suite-fixes, r=Nilstrieb
Improve tests on targets without unwinding This PR makes more miscellaneous changes to tests, to make it work on targets without unwinding support.
Diffstat (limited to 'tests/codegen')
| -rw-r--r-- | tests/codegen/naked-nocoverage.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/codegen/naked-nocoverage.rs b/tests/codegen/naked-nocoverage.rs index 91a6260bf2a..3c755e49c6d 100644 --- a/tests/codegen/naked-nocoverage.rs +++ b/tests/codegen/naked-nocoverage.rs @@ -11,7 +11,7 @@ use std::arch::asm; #[naked] #[no_mangle] pub unsafe extern "C" fn f() { - // CHECK: define void @f() + // CHECK: define {{(dso_local )?}}void @f() // CHECK-NEXT: start: // CHECK-NEXT: call void asm // CHECK-NEXT: unreachable |
