(root)/
binutils-2.41/
ld/
testsuite/
ld-elf/
dwarf3.c
       1  /* This test is actually used to test for a segfault that came from the bfd
       2     dwarf parsing code in the case when there is _no_ dwarf info.  */
       3  
       4  extern void bar (int a);
       5  
       6  int
       7  main ()
       8  {
       9    bar (1);
      10    bar (2);
      11  
      12    return 0;
      13  }