165253Sache/* Copyright 2000 Free Software Foundation
265253Sache
365253Sache   by Alexandre Oliva  <aoliva@redhat.com>
465253Sache
565253Sache   Based on zlib/gzio.c.
665253Sache
765253Sache   This used to generate duplicate labels when compiled with
865253Sache   sh-elf-gcc -O2 -m3 -fPIC.
965253Sache
1065253Sache   Bug reported by NIIBE Yutaka <gniibe@m17n.org>.  */
1165253Sache
1265253Sachevoid foo (void);
1365253Sache
1465253Sachevoid
1565253Sachebar ()
1665253Sache{
1765253Sache    unsigned len;
1865253Sache
1965253Sache    for (len = 0; len < 2; len++)
2065253Sache	foo ();
2165253Sache}
2265253Sache