* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / xbg.c
blobb600964d4203c7ab80b52b017a957af89c1fa9c2
1 typedef short type;
3 short
4 foo (type *sp, int a)
6 type t;
7 int i;
9 t = sp[a];
10 i = (int)(type)sp[a];
11 if (i)
12 return 0;
13 return t;