blob: b600964d4203c7ab80b52b017a957af89c1fa9c2 [file] [log] [blame]
typedef short type;
short
foo (type *sp, int a)
{
type t;
int i;
t = sp[a];
i = (int)(type)sp[a];
if (i)
return 0;
return t;
}