view gcc/testsuite/g++.dg/debug/dwarf2/array-2.C @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 1830386684a0
children
line wrap: on
line source

/* { dg-do compile } */
/* { dg-options "-gdwarf-2 -dA" } */
struct S
{
  typedef int i_t;
  static i_t array[42];
};

int S::array[42];

/* Verify that we get two DW_TAG_subrange_type (plus abbrev), and two
   DW_AT_upper_bound, because a different symbolic name is used for
   the array element type.  */
/* { dg-final { scan-assembler-times " DW_TAG_subrange_type" 3 } } */
/* { dg-final { scan-assembler-times " DW_AT_upper_bound" 2 } } */