view gcc/testsuite/c-c++-common/Wunused-var-15.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

/* PR c/71719 */
/* { dg-do compile } */
/* { dg-options "-Wunused -W -Wno-psabi" } */
/* { dg-additional-options "-fno-common" { target hppa*-*-hpux* } } */

typedef unsigned V __attribute__ ((vector_size (16)));

void bar (unsigned);

V x;

void
foo (V v)	/* { dg-bogus "set but not used" } */
{
  bar (v[0]);
  V w = x;	/* { dg-bogus "set but not used" } */
  bar (w[1]);
}

/* Ignore a warning that is irrelevant to the purpose of this test.  */
/* { dg-prune-output ".*GCC vector passed by reference.*" } */