]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
testsuite: fix testcase pr110279-1.c
authorDi Zhao <dizhao@os.amperecomputing.com>
Tue, 5 Nov 2024 04:28:54 +0000 (12:28 +0800)
committerDi Zhao <dizhao@os.amperecomputing.com>
Tue, 5 Nov 2024 08:28:26 +0000 (16:28 +0800)
The test case is for targets that support FMA. Previously
the "target" selector is missed in dg-final command.

gcc/testsuite/ChangeLog:
PR tree-optimization/110279
* gcc.dg/pr110279-1.c: add target selector.

gcc/testsuite/gcc.dg/pr110279-1.c

index a8c7257b28d320bab9249147fe854d1df3b03972..c4f94ea5810cc7e2b6a3bc3bd670acbda5c37541 100644 (file)
@@ -1,4 +1,4 @@
-/* { dg-do compile } */
+/* { dg-do compile { target { scalar_all_fma || { i?86-*-* x86_64-*-* } } } } */
 /* { dg-options "-Ofast --param avoid-fma-max-bits=512 --param tree-reassoc-width=4 -fdump-tree-widening_mul-details" } */
 /* { dg-additional-options "-mcpu=generic" { target aarch64*-*-* } } */
 /* { dg-additional-options "-mfma" { target i?86-*-* x86_64-*-* } } */
@@ -64,4 +64,4 @@ foo3 (data_e a, data_e b, data_e c, data_e d)
   return result;
 }
 
-/* { dg-final { scan-tree-dump-times "Generated FMA" 3 "widening_mul"} } */
\ No newline at end of file
+/* { dg-final { scan-tree-dump-times "Generated FMA" 3 "widening_mul" } } */