blob: 8005e2b2adcf3446fb6bd3631edee11e7b3209d2 [file] [log] [blame]
/* { dg-additional-options "-std=gnu89" } */
typedef int xtype;
foo (p, pc)
xtype *p;
char *pc;
{
xtype a;
unsigned b = 0;
a = *p;
p[1] = a;
if ((unsigned) p[1] > 0)
return 1;
return a;
}