OSDN Git Service

2010-04-06 Dodji Seketeli <dodji@redhat.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / debug / dwarf2 / redeclaration-1.C
1 // Origin: PR debug/43325
2 // { dg-options "-g -dA" }
3 // { dg-do compile }
4
5 // { dg-final { scan-assembler-times "\[^\n\r\]*\\(DIE \[^\n\r\]*DW_TAG_lexical_block\\)\[\n\r\]{1,2}\[^\n\r\]*DW_AT_low_pc\[\n\r\]{1,2}\[^\n\r\]*DW_AT_high_pc\[\n\r\]{1,2}\[^\n\r\]*\\(DIE \[^\n\r\]*DW_TAG_variable\\)\[\n\r\]{1,2}\[^\n\r\]*DW_AT_name" 2 } }
6
7 namespace S
8 {
9   int
10   f()
11   {
12     int i = 42;
13     {
14       extern int i;
15       return i;
16     }
17   }
18 }