1 /* Check that there are no problems with .uses labels when branch relaxation
2    is enabled.  */
3 /* { dg-do assemble }  */
4 /* { dg-additional-options "-mrelax" }  */
5 
6 extern void foo (int);
7 
8 int
main(void)9 main (void)
10 {
11   foo (7);
12   return 0;
13 }
14