From: Iain Sandoe Date: Sun, 23 Jun 2019 19:48:55 +0000 (+0000) Subject: [Darwin, PPC, testsuite] Fix builtins-1 testcase for Darwin. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fb007b0dd34e5e93b9efbbcd79e3f2763816ab8e;p=gcc.git [Darwin, PPC, testsuite] Fix builtins-1 testcase for Darwin. This needs to account for Darwin's __USER_LABEL_PREFIX__. 2019-06-23 Iain Sandoe * gcc.target/powerpc/builtins-1.c: Account for Darwin's use of __USER_LABEL_PREFIX__. From-SVN: r272604 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 5cdf35d5bf7..7074bf83b1b 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2019-06-23 Iain Sandoe + + * gcc.target/powerpc/builtins-1.c: Account for Darwin's use of + __USER_LABEL_PREFIX__. + 2019-06-23 Iain Sandoe * gcc.target/powerpc/pr71785.c: For Darwin, make test non-PIC, diff --git a/gcc/testsuite/gcc.target/powerpc/builtins-1.c b/gcc/testsuite/gcc.target/powerpc/builtins-1.c index 8263e28b803..73f8fb54cff 100644 --- a/gcc/testsuite/gcc.target/powerpc/builtins-1.c +++ b/gcc/testsuite/gcc.target/powerpc/builtins-1.c @@ -330,10 +330,10 @@ int main () /* { dg-final { scan-assembler-times "divd" 8 { target lp64 } } } */ /* { dg-final { scan-assembler-times "divdu" 2 { target lp64 } } } */ /* { dg-final { scan-assembler-times "mulld" 4 { target lp64 } } } */ -/* check for both .__divdi3 (AIX) and __divdi3 (Linux) */ -/* { dg-final { scan-assembler-times {\mbl \.?__divdi3\M} 2 { target { ilp32 } } } } */ -/* check for both .__udivdi3 (AIX) and __udivdi3 (Linux) */ -/* { dg-final { scan-assembler-times {\mbl \.?__udivdi3\M} 2 { target { ilp32 } } } } */ +/* check for .__divdi3 (AIX), __divdi3 (Linux) and ___divdi3 (Darwin) */ +/* { dg-final { scan-assembler-times {\mbl \.?_?__divdi3\M} 2 { target { ilp32 } } } } */ +/* check for both .__udivdi3 (AIX), __udivdi3 (Linux) and ___udivdi3 (Darwin) */ +/* { dg-final { scan-assembler-times {\mbl \.?_?__udivdi3\M} 2 { target { ilp32 } } } } */ /* { dg-final { scan-assembler-times "mullw" 12 { target ilp32 } } } */ /* { dg-final { scan-assembler-times "mulhwu" 4 { target ilp32 } } } */ /* { dg-final { scan-assembler-times "xxmrgld" 0 } } */