OSDN Git Service

2005-07-03 Andrew Pinski <pinskia@physics.uc.edu>
authorpinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 3 Jul 2005 13:02:40 +0000 (13:02 +0000)
committerpinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 3 Jul 2005 13:02:40 +0000 (13:02 +0000)
        * pr14490-[1-4].c: Fix typos scan-tree-dump-times so they now pass.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101549 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/tree-ssa/pr14490-1.c
gcc/testsuite/gcc.dg/tree-ssa/pr14490-2.c
gcc/testsuite/gcc.dg/tree-ssa/pr14490-3.c
gcc/testsuite/gcc.dg/tree-ssa/pr14490-4.c

index 203bd56..ce96728 100644 (file)
@@ -1,3 +1,7 @@
+2005-07-03  Andrew Pinski  <pinskia@physics.uc.edu>
+
+       * pr14490-[1-4].c: Fix typos scan-tree-dump-times so they now pass.
+
 2005-07-03  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
 
        PR fortran/20842
index 733367b..7104310 100644 (file)
@@ -4,8 +4,8 @@ int g(int x)
 {
    return (x - 10) < 0;
 }
-/* There should be only x >= 9 and no x - 10. */
-/* { dg-final { scan-tree-dump-times ">= 9" 1 "gimple"} } */
-/* { dg-final { scan-tree-dump-times "10" 0 "gimple"} } */
+/* There should be only x <= 9 and no x - 10. */
+/* { dg-final { scan-tree-dump-times "<= 9" 1 "gimple"} } */
+/* { dg-final { scan-tree-dump-times "+ -10" 0 "gimple"} } */
 /* { dg-final { cleanup-tree-dump "gimple" } } */
 
index eaa0f13..05e0beb 100644 (file)
@@ -5,6 +5,6 @@ int g(int x)
    return (x - 10) < 0;
 }
 /* There should be no x >= 9 and one x - 10. */
-/* { dg-final { scan-tree-dump-times ">= 9" 0 "gimple"} } */
-/* { dg-final { scan-tree-dump-times "10" 1 "gimple"} } */
+/* { dg-final { scan-tree-dump-times "<= 9" 0 "gimple"} } */
+/* { dg-final { scan-tree-dump-times "+ -10" 1 "gimple"} } */
 /* { dg-final { cleanup-tree-dump "gimple" } } */
index 0e6873b..49ffce8 100644 (file)
@@ -4,7 +4,7 @@ int g(int x)
 {
    return (x + 10) < 0;
 }
-/* There should be only x >= -9 and no x + 10. */
-/* { dg-final { scan-tree-dump-times ">= 9" 1 "gimple"} } */
-/* { dg-final { scan-tree-dump-times "- 10" 0 "gimple"} } */
+/* There should be only x < -10 and no x + 10. */
+/* { dg-final { scan-tree-dump-times "< -10" 1 "gimple"} } */
+/* { dg-final { scan-tree-dump-times "+ 10" 0 "gimple"} } */
 /* { dg-final { cleanup-tree-dump "gimple" } } */
index 365ab77..1b48a51 100644 (file)
@@ -4,7 +4,7 @@ int g(int x)
 {
    return (x + 10) < 0;
 }
-/* There should be no x >= -9 and one x + 10. */
-/* { dg-final { scan-tree-dump-times ">= 9" 0 "gimple"} } */
-/* { dg-final { scan-tree-dump-times "- 10" 1 "gimple"} } */
+/* There should be no x < -10 and one x + 10. */
+/* { dg-final { scan-tree-dump-times "< -10" 0 "gimple"} } */
+/* { dg-final { scan-tree-dump-times "+ 10" 1 "gimple"} } */
 /* { dg-final { cleanup-tree-dump "gimple" } } */