summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/pr70325.c
blob: e2b9342658c3efe2e91fb69d336a9ab52c38dc46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* PR target/70325 */
/* { dg-do compile } */
/* { dg-options "-mavx512vl -O2" } */

typedef char C __attribute((__vector_size__(32)));
typedef int I __attribute((__vector_size__(32)));

void
f(int a,I b)
{
  __builtin_ia32_storedquqi256_mask((C*)f,(C)b,a); /* { dg-warning "implicit declaration of function" } */
}