summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr83930.c
blob: 8a079af3fb43b519f1c678556d399328d5c3e5fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* PR target/83930 */
/* { dg-do compile } */
/* { dg-options "-Og -fno-tree-ccp -w" } */

unsigned __attribute__ ((__vector_size__ (16))) v;

static inline void
bar (unsigned char d)
{
  v /= d;
}

__attribute__ ((always_inline)) void
foo (void)
{
  bar (4);
}