diff options
| author | Nikita Popov <npopov@redhat.com> | 2025-07-29 14:07:27 +0200 |
|---|---|---|
| committer | Nikita Popov <npopov@redhat.com> | 2025-07-29 14:08:19 +0200 |
| commit | ccf660f855eec84f976ed07190d9e8a8b93e2c1f (patch) | |
| tree | ca7f647822d045d340d6a13082af968fd5957f0c | |
| parent | d50b4f10f18b2f84be72692e39dd5de7e8dde949 (diff) | |
| download | rust-ccf660f855eec84f976ed07190d9e8a8b93e2c1f.tar.gz rust-ccf660f855eec84f976ed07190d9e8a8b93e2c1f.zip | |
Relax check lines in x86-return-float.rs
On LLVM 21 additional %esp adjustments are generated. Don't use NEXT to allow these.
| -rw-r--r-- | tests/assembly-llvm/x86-return-float.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/assembly-llvm/x86-return-float.rs b/tests/assembly-llvm/x86-return-float.rs index 165c11d2280..4db93f68485 100644 --- a/tests/assembly-llvm/x86-return-float.rs +++ b/tests/assembly-llvm/x86-return-float.rs @@ -334,9 +334,9 @@ pub fn return_f128(x: f128) -> f128 { // linux-NEXT: .cfi_offset // CHECK-NEXT: movl %esp, %ebp // linux-NEXT: .cfi_def_cfa_register - // linux-NEXT: movaps 8(%ebp), %xmm0 - // win-NEXT: movups 8(%ebp), %xmm0 - // CHECK-NEXT: popl %ebp + // linux: movaps 8(%ebp), %xmm0 + // win: movups 8(%ebp), %xmm0 + // CHECK: popl %ebp // linux-NEXT: .cfi_def_cfa // CHECK-NEXT: retl x |
