1 /* PR debug/97060 */
2 /* { dg-do compile } */
3 /* { dg-options "-g -dA" } */
4 /* { dg-final { scan-assembler-times "DW_AT_declaration" 2 } } */
5 
6 extern int foo (unsigned int, unsigned int);
7 
8 int
bar(void)9 bar (void)
10 {
11   foo (1, 2);
12   return 0;
13 }
14