Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / compile / 20020319-1.c
blobbe5b9c2fecec85b048f3189e66408d061a419321
1 /* This testcase ICEd in combine.c:do_SUBST() self-test for sign-extended
2 CONST_INT because expr.c:expand_expr() was not sign-extending array index
3 into constant strings. */
5 typedef unsigned char uch;
6 extern uch outbuf[];
7 extern unsigned outcnt;
9 extern void flush_outbuf (void);
11 int zip(void)
13 outcnt = 0;
15 {outbuf[outcnt++]=(uch)("\037\213"[0]); if (outcnt==16384) flush_outbuf();};
16 {outbuf[outcnt++]=(uch)("\037\213"[1]); if (outcnt==16384) flush_outbuf();};
18 return 0;