]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.target/powerpc/float128-fma2.c
PR target/82692
[thirdparty/gcc.git] / gcc / testsuite / gcc.target / powerpc / float128-fma2.c
CommitLineData
5f99b1f6 1/* { dg-do compile { target { powerpc*-*-* && lp64 } } } */
2/* { dg-require-effective-target powerpc_p9vector_ok } */
3/* { dg-options "-mpower9-vector -mno-float128-hardware -O2" } */
4
5__float128
6xfma (__float128 a, __float128 b, __float128 c)
7{
8 return __builtin_fmaf128 (a, b, c); /* { dg-error "ISA 3.0 IEEE 128-bit" } */
9}