From patchwork Fri Dec 23 21:12:52 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [testsuite] : Fix gcc.dg/vect/fast-math-pr35982.c From: Uros Bizjak X-Patchwork-Id: 133143 Message-Id: To: gcc-patches@gcc.gnu.org Date: Fri, 23 Dec 2011 22:12:52 +0100 Hello! 2011-12-23 Uros Bizjak * gcc.dg/vect/fast-math-pr35982.c: Fix parenthesis in target selectors. Tested on x86_64-pc-linux-gnu, committed to mainline. Uros. Index: gcc.dg/vect/fast-math-pr35982.c =================================================================== --- gcc.dg/vect/fast-math-pr35982.c (revision 182661) +++ gcc.dg/vect/fast-math-pr35982.c (working copy) @@ -20,7 +20,6 @@ return avg; } -/* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { target vect_extract_even_odd || vect_strided2 } } } */ -/* { dg-final { scan-tree-dump-times "vectorized 0 loops" 1 "vect" { xfail vect_extract_even_odd || vect_strided2 } } } */ +/* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { target { vect_extract_even_odd || vect_strided2 } } } } */ +/* { dg-final { scan-tree-dump-times "vectorized 0 loops" 1 "vect" { xfail { vect_extract_even_odd || vect_strided2 } } } } */ /* { dg-final { cleanup-tree-dump "vect" } } */ -