re PR tree-optimization/72817 (wrong code at -O3 on x86_64-linux-gnu (in both 32-bit and 64-bit modes))

PR tree-optimization/72817
	* gcc.dg/tree-ssa/pr72817.c (a): Change type from char to signed char.

From-SVN: r239514
This commit is contained in:
Jakub Jelinek 2016-08-17 00:06:45 +02:00 committed by Jakub Jelinek
parent feeb62681c
commit af23e99cca
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2016-08-16 Jakub Jelinek <jakub@redhat.com>
PR tree-optimization/72817
* gcc.dg/tree-ssa/pr72817.c (a): Change type from char to signed char.
2016-08-16 Joseph Myers <joseph@codesourcery.com>
PR libgcc/77265

View File

@ -1,7 +1,7 @@
/* { dg-do run } */
/* { dg-options "-O3" } */
char a;
signed char a;
short b;
int main ()