]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
PR tree-optimization/68541
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 8 Feb 2016 08:40:00 +0000 (08:40 +0000)
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 8 Feb 2016 08:40:00 +0000 (08:40 +0000)
        * gcc.dg/tree-ssa/split-path-2.c: Make char array explicitly signed.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@233208 138bc75d-0d04-0410-961f-82ee72b054a4

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;