https://gcc.gnu.org/g:9e6ce124e2fcf08e395196590b2952e410227473
commit r17-1599-g9e6ce124e2fcf08e395196590b2952e410227473 Author: Iain Sandoe <[email protected]> Date: Tue Jun 16 14:24:36 2026 +0100 testsuite, x86, Darwin: Amend fabsneg-2.c for Mach-O. The new test fails on Darwin because constant labels may also be introduced with 'lC' where we require them to be linker-visible. gcc/testsuite/ChangeLog: * gcc.target/i386/fabsneg-2.c: Allow for lC* in Mach-O. Signed-off-by: Iain Sandoe <[email protected]> Diff: --- gcc/testsuite/gcc.target/i386/fabsneg-2.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/testsuite/gcc.target/i386/fabsneg-2.c b/gcc/testsuite/gcc.target/i386/fabsneg-2.c index dd40c755a49b..95906ddd71e9 100644 --- a/gcc/testsuite/gcc.target/i386/fabsneg-2.c +++ b/gcc/testsuite/gcc.target/i386/fabsneg-2.c @@ -19,5 +19,5 @@ void bar() z = __builtin_fabsf(z); } -/* { dg-final { scan-assembler-times "LC0\[,(\]" 1 } } */ -/* { dg-final { scan-assembler-times "LC1\[,(\]" 1 } } */ +/* { dg-final { scan-assembler-times "\[lL\]C0\[,(\]" 1 } } */ +/* { dg-final { scan-assembler-times "\[lL\]C1\[,(\]" 1 } } */
