1 /* This used to ICE on s390 due to a old-loop bug. */
3 /* { dg-do compile } */
4 /* { dg-options "-O2" } */
6 char *strcpy (char *dest
, const char *src
);
8 void test (char *Line
, int len
)
12 for (z
= 1; z
<= len
; z
++)
14 strcpy (Line
+ z
+ 1, Line
);