view gcc/testsuite/c-c++-common/Wunused-var-13.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

/* PR c/46015 */
/* { dg-options "-Wunused" } */
/* { dg-do compile } */
/* { dg-require-effective-target label_values } */

int
f1 (int i)
{
  static void *labs[2] = { &&lab1, &&lab2 };
  goto *(labs[i & 1]);

lab1:
  return 1;
lab2:
  return 2;
}

int
f2 (int i)
{
  void *labs[2] = { &&lab1, &&lab2 };
  goto *labs[i & 1];

lab1:
  return 1;
lab2:
  return 2;
}