blob: b0f680a06bd78afc8bc6a62ec7f0b3d2eaf498a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* PR c/71719 */
/* { dg-do compile } */
/* { dg-options "-Wunused -W -Wno-psabi" } */
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.*" } */
|