view gcc/testsuite/gcc.dg/guality/pr63300-const-volatile.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* PR63300 'const volatile' sometimes stripped in debug info */
/* { dg-do run } */
/* { dg-options "-g" } */

int
main (int argc, char **argv)
{
  const volatile int v = argc;
  return v - argc;
}

/* { dg-final { gdb-test 9 "type:v" "const volatile int" } } */