8sa1-gcc/gcc/testsuite/gcc.c-torture/unsorted/xbg.c
Jeff Law 921e5a0eb4 Initial revision
From-SVN: r14840
1997-08-19 01:34:40 -06:00

15 lines
145 B
C

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;
}