view gcc/testsuite/c-c++-common/Wunused-var-8.c @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* Origin: PR c++/44108 */
/* { dg-options "-Wunused" } */
/* { dg-do compile } */
/* { dg-require-effective-target alloca } */

int
foo ()
{
  unsigned int M = 2;
  const unsigned int M_CONST = 2;
  static unsigned int M_STATIC = 2;
  static const unsigned int M_STATIC_CONST = 2;

  char n1[M];
  char n2[M_CONST];
  char n3[M_STATIC];
  char n4[M_STATIC_CONST];

  return sizeof (n1) + sizeof (n2) + sizeof (n3) + sizeof (n4);
}