]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR tree-optimization/68541 (Path splitting causes if-conversion miss)
authorJeff Law <law@redhat.com>
Mon, 8 Feb 2016 08:40:00 +0000 (01:40 -0700)
committerJeff Law <law@gcc.gnu.org>
Mon, 8 Feb 2016 08:40:00 +0000 (01:40 -0700)
        PR tree-optimization/68541
        * gcc.dg/tree-ssa/split-path-2.c: Make char array explicitly signed.

From-SVN: r233208

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/tree-ssa/split-path-2.c

index 6940136a848d27d4bb54b3d75245cf4f76c4c290..6aa927d05de80b3a354e93d759644a0fb88b4662 100644 (file)
@@ -1,5 +1,8 @@
 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
        * gcc.dg/tree-ssa/20030922-2.c: No longer xfailed.
 
index aeb926ef0edfaa7117c380cfa3d303117ef280d5..8f503f236a6b567a1fad32831bc202462a88c69f 100644 (file)
@@ -2,7 +2,7 @@
 /* { dg-options "-O2 -fsplit-paths -fdump-tree-split-paths-details " } */
 
 int
-foo(char *p, int n)
+foo(signed char *p, int n)
 {
   int s = 0;
   int i;