diff options
author | dodji <dodji@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-04-06 21:26:35 +0000 |
---|---|---|
committer | dodji <dodji@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-04-06 21:26:35 +0000 |
commit | 1180e74cc3d6d6657a008096c911c8a86e7c454b (patch) | |
tree | c3bf87cbaba26f1a93b48aea47ceaeb7382ee711 /gcc/testsuite/c-c++-common | |
parent | aad3e1b3626af198335f363a90c6ab79e3158f9a (diff) | |
download | gcc-1180e74cc3d6d6657a008096c911c8a86e7c454b.tar.gz |
2010-04-06 Dodji Seketeli <dodji@redhat.com>
* g++.dg/debug/dwarf2/redeclaration-1.C: Moved from
c-c++-common/dwarf2/redeclaration-1.C
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@158031 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/testsuite/c-c++-common')
-rw-r--r-- | gcc/testsuite/c-c++-common/dwarf2/redeclaration-1.C | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/gcc/testsuite/c-c++-common/dwarf2/redeclaration-1.C b/gcc/testsuite/c-c++-common/dwarf2/redeclaration-1.C deleted file mode 100644 index 8aaff8ef2ea..00000000000 --- a/gcc/testsuite/c-c++-common/dwarf2/redeclaration-1.C +++ /dev/null @@ -1,18 +0,0 @@ -// Origin: PR debug/43325 -// { dg-options "-g -dA" } -// { dg-do compile } - -// { 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 } } - -namespace S -{ - int - f() - { - int i = 42; - { - extern int i; - return i; - } - } -} |