pr14490-[1-4].c: Fix typos scan-tree-dump-times so they now pass.
authorAndrew Pinski <pinskia@physics.uc.edu>
Sun, 3 Jul 2005 13:02:40 +0000 (13:02 +0000)
committerAndrew Pinski <pinskia@gcc.gnu.org>
Sun, 3 Jul 2005 13:02:40 +0000 (06:02 -0700)
2005-07-03  Andrew Pinski  <pinskia@physics.uc.edu>

        * pr14490-[1-4].c: Fix typos scan-tree-dump-times so they now pass.

From-SVN: r101549

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 203bd56cc53d4d9db1cd4bb19c0b22bb2f406fb7..ce967281595c934bcc6584b80d97f993c74f623f 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 733367b214cd48fc132c61e1804b9646ecc12cbf..7104310b64fdb9c82b33a025388358081e0293ef 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 eaa0f1368f733d60d8782a4630c93c3fc5f6b642..05e0beb2a4c116656f652c99f9327797ab8dcb86 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 0e6873b831d63a13e967ce6bbde258fe55675d59..49ffce8afce1bdc2ca099525e9a80cf5ff3616d2 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 365ab7771c06cf9127855148c13af6fcbd45dce8..1b48a513b26b075520eac93c046fbedf1043718b 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" } } */