Commit e8dfe49e by Jeff Law Committed by Jeff Law

re PR tree-optimization/68541 (Path splitting causes if-conversion miss)

        PR tree-optimization/68541
        * gcc.dg/tree-ssa/split-path-2.c: Make char array explicitly signed.

From-SVN: r233208
parent 0b604d2d
2016-02-08 Jeff Law <law@redhat.com> 2016-02-08 Jeff Law <law@redhat.com>
PR tree-optimization/68541
* gcc.dg/tree-ssa/split-path-2.c: Make char array explicitly signed.
PR tree-optimization/65917 PR tree-optimization/65917
* gcc.dg/tree-ssa/20030922-2.c: No longer xfailed. * gcc.dg/tree-ssa/20030922-2.c: No longer xfailed.
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
/* { dg-options "-O2 -fsplit-paths -fdump-tree-split-paths-details " } */ /* { dg-options "-O2 -fsplit-paths -fdump-tree-split-paths-details " } */
int int
foo(char *p, int n) foo(signed char *p, int n)
{ {
int s = 0; int s = 0;
int i; int i;
......
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