aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/ChangeLog5
-rw-r--r--gcc/testsuite/gcc.dg/torture/pr66952.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 6f33103..672be70 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2015-07-23 Richard Biener <rguenther@suse.de>
+
+ PR tree-optimization/66952
+ * gcc.dg/torture/pr66952.c: Use signed char.
+
2015-07-23 Yuri Rumyantsev <ysrumyan@gmail.com>
PR tree-optimization/66926,66951
diff --git a/gcc/testsuite/gcc.dg/torture/pr66952.c b/gcc/testsuite/gcc.dg/torture/pr66952.c
index 2a98d2e..a5f6e63 100644
--- a/gcc/testsuite/gcc.dg/torture/pr66952.c
+++ b/gcc/testsuite/gcc.dg/torture/pr66952.c
@@ -3,7 +3,7 @@
int a = 128, b;
static int
-fn1 (char p1, int p2)
+fn1 (signed char p1, int p2)
{
return p1 < 0 || p1 > 1 >> p2 ? 0 : p1 << 1;
}
@@ -11,7 +11,7 @@ fn1 (char p1, int p2)
static int
fn2 ()
{
- char c = a;
+ signed char c = a;
b = fn1 (c, 1);
if ((128 | c) < 0 ? 1 : 0)
return 1;