1/* This testcase ICEd in combine.c:do_SUBST() self-test for sign-extended
2CONST_INT because expr.c:expand_expr() was not sign-extending array index
3into constant strings.  */
4
5typedef unsigned char uch;
6extern uch outbuf[];
7extern unsigned outcnt;
8
9extern void flush_outbuf (void);
10
11int zip(void)
12{
13  outcnt = 0;
14
15    {outbuf[outcnt++]=(uch)("\037\213"[0]); if (outcnt==16384) flush_outbuf();};
16    {outbuf[outcnt++]=(uch)("\037\213"[1]); if (outcnt==16384) flush_outbuf();};
17
18  return 0;
19}
20
21