Commit bbef4d45 by Andrew Pinski Committed by Andrew Pinski

re PR testsuite/22288 (dg-final: couldn't compile regular expression pattern)

2005-07-03  Andrew Pinski  <pinskia@physics.uc.edu>

        PR testsuite/22288
        * gcc.dg/tree-ssa/pr14490-[1-4].c: Escape "+".

From-SVN: r101562
parent ab532386
2005-07-03 Andrew Pinski <pinskia@physics.uc.edu>
PR testsuite/22288
* gcc.dg/tree-ssa/pr14490-[1-4].c: Escape "+".
2005-07-03 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* gcc.dg/format/gcc_gfc-1.c: New.
......
......@@ -6,6 +6,6 @@ int g(int x)
}
/* 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 { scan-tree-dump-times "\\+ -10" 0 "gimple"} } */
/* { dg-final { cleanup-tree-dump "gimple" } } */
......@@ -6,5 +6,5 @@ int g(int x)
}
/* 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 "\\+ -10" 1 "gimple"} } */
/* { dg-final { cleanup-tree-dump "gimple" } } */
......@@ -6,5 +6,5 @@ int g(int x)
}
/* 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 { scan-tree-dump-times "\\+ 10" 0 "gimple"} } */
/* { dg-final { cleanup-tree-dump "gimple" } } */
......@@ -6,5 +6,5 @@ int g(int x)
}
/* 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 { scan-tree-dump-times "\\+ 10" 1 "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