Commit dd0f37b5 by Andrew Pinski Committed by Andrew Pinski

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

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
parent 7adaa46c
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> 2005-07-03 Francois-Xavier Coudert <coudert@clipper.ens.fr>
PR fortran/20842 PR fortran/20842
......
...@@ -4,8 +4,8 @@ int g(int x) ...@@ -4,8 +4,8 @@ int g(int x)
{ {
return (x - 10) < 0; return (x - 10) < 0;
} }
/* There should be only x >= 9 and no x - 10. */ /* 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 "<= 9" 1 "gimple"} } */
/* { dg-final { scan-tree-dump-times "- 10" 0 "gimple"} } */ /* { dg-final { scan-tree-dump-times "+ -10" 0 "gimple"} } */
/* { dg-final { cleanup-tree-dump "gimple" } } */ /* { dg-final { cleanup-tree-dump "gimple" } } */
...@@ -5,6 +5,6 @@ int g(int x) ...@@ -5,6 +5,6 @@ int g(int x)
return (x - 10) < 0; return (x - 10) < 0;
} }
/* There should be no x >= 9 and one x - 10. */ /* 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 "<= 9" 0 "gimple"} } */
/* { dg-final { scan-tree-dump-times "- 10" 1 "gimple"} } */ /* { dg-final { scan-tree-dump-times "+ -10" 1 "gimple"} } */
/* { dg-final { cleanup-tree-dump "gimple" } } */ /* { dg-final { cleanup-tree-dump "gimple" } } */
...@@ -4,7 +4,7 @@ int g(int x) ...@@ -4,7 +4,7 @@ int g(int x)
{ {
return (x + 10) < 0; return (x + 10) < 0;
} }
/* There should be only x >= -9 and no x + 10. */ /* There should be only x < -10 and no x + 10. */
/* { dg-final { scan-tree-dump-times ">= 9" 1 "gimple"} } */ /* { dg-final { scan-tree-dump-times "< -10" 1 "gimple"} } */
/* { dg-final { scan-tree-dump-times "- 10" 0 "gimple"} } */ /* { dg-final { scan-tree-dump-times "+ 10" 0 "gimple"} } */
/* { dg-final { cleanup-tree-dump "gimple" } } */ /* { dg-final { cleanup-tree-dump "gimple" } } */
...@@ -4,7 +4,7 @@ int g(int x) ...@@ -4,7 +4,7 @@ int g(int x)
{ {
return (x + 10) < 0; return (x + 10) < 0;
} }
/* There should be no x >= -9 and one x + 10. */ /* There should be no x < -10 and one x + 10. */
/* { dg-final { scan-tree-dump-times ">= 9" 0 "gimple"} } */ /* { dg-final { scan-tree-dump-times "< -10" 0 "gimple"} } */
/* { dg-final { scan-tree-dump-times "- 10" 1 "gimple"} } */ /* { dg-final { scan-tree-dump-times "+ 10" 1 "gimple"} } */
/* { dg-final { cleanup-tree-dump "gimple" } } */ /* { dg-final { cleanup-tree-dump "gimple" } } */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment