aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/debug/dwarf2/pr97060.c
blob: c07b9046d9af6fa376376e06399bd069562dd13b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* PR debug/97060 */
/* { dg-do compile } */
/* { dg-options "-g -dA" } */
/* { dg-final { scan-assembler-times "DW_AT_declaration" 2 } } */

extern int foo (unsigned int, unsigned int);

int
bar (void)
{
  foo (1, 2);
  return 0;
}