This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH][tree-optimization/69196] Limit test to targets where it has been tested




The test tree-ssa/pr69196-1.c is BRANCH_COST sensitive. This patch limits it to the targets where it's actually been tested, reducing unnecessary noise in the testsuite for other targets.

Installed on the trunk.

jeff

commit f37ecd860c899173c94689d6001730c1d750d860
Author: law <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Date:   Sat Mar 5 06:12:09 2016 +0000

    	PR tree-optimization/69196
    	* gcc.dg/tree-ssa/pr69196-1.c: Limit this to sparc*-*-* and
    	x86_64-*-*.
    
    git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@234003 138bc75d-0d04-0410-961f-82ee72b054a4

diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 683585c..4b08dcd 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,9 @@
+2016-03-04  Jeff Law  <law@redhat.com>
+
+	PR tree-optimization/69196
+	* gcc.dg/tree-ssa/pr69196-1.c: Limit this to sparc*-*-* and
+	x86_64-*-*.
+
 2016-03-04  Bernd Schmidt  <bschmidt@redhat.com>
 
 	PR c/69973
diff --git a/gcc/testsuite/gcc.dg/tree-ssa/pr69196-1.c b/gcc/testsuite/gcc.dg/tree-ssa/pr69196-1.c
index 11c7cf5..415ac2e 100644
--- a/gcc/testsuite/gcc.dg/tree-ssa/pr69196-1.c
+++ b/gcc/testsuite/gcc.dg/tree-ssa/pr69196-1.c
@@ -1,4 +1,4 @@
-/* { dg-do compile } */
+/* { dg-do compile { target sparc*-*-* x86_64-*-* } } */
 /* { dg-options "-O2 -fdump-tree-vrp1-details" } */
 
 /* { dg-final { scan-tree-dump "FSM did not thread around loop and would copy too many statements" "vrp1" } } */

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]