Skip to content

Commit ccf660f

Browse files
committed
Relax check lines in x86-return-float.rs
On LLVM 21 additional %esp adjustments are generated. Don't use NEXT to allow these.
1 parent d50b4f1 commit ccf660f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/assembly-llvm/x86-return-float.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -334,9 +334,9 @@ pub fn return_f128(x: f128) -> f128 {
334334
// linux-NEXT: .cfi_offset
335335
// CHECK-NEXT: movl %esp, %ebp
336336
// linux-NEXT: .cfi_def_cfa_register
337-
// linux-NEXT: movaps 8(%ebp), %xmm0
338-
// win-NEXT: movups 8(%ebp), %xmm0
339-
// CHECK-NEXT: popl %ebp
337+
// linux: movaps 8(%ebp), %xmm0
338+
// win: movups 8(%ebp), %xmm0
339+
// CHECK: popl %ebp
340340
// linux-NEXT: .cfi_def_cfa
341341
// CHECK-NEXT: retl
342342
x

0 commit comments

Comments
 (0)