summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/debug/dwarf2/global-used-types.c
blob: 54fa58ae3f23396d382da22be3e430242e4014e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 Contributed by Dodji Seketeli <dodji@redhat.com>
 { dg-options "-g -dA -fno-merge-debug-strings" }
 { dg-do compile }
 { dg-final { scan-assembler-times "DIE \\(0x\[^\n\]*\\) DW_TAG_enumeration_type" 1 } }
 { dg-final { scan-assembler-times "DIE \\(0x\[^\n\]*\\) DW_TAG_enumerator" 2 } }
 { dg-final { scan-assembler-times "ascii \"a.0\"\[\t \]+\[^\n\]*DW_AT_name" 1 } }
 { dg-final { scan-assembler-times "ascii \"b.0\"\[\t \]+\[^\n\]*DW_AT_name" 1 } }
 */

enum { a, b };

int v = a;
char s[b];