]> git.ipfire.org Git - people/ms/gcc.git/blame - gcc/testsuite/gcc.dg/pr83930.c
testsuite: Remove obsolete comments [PR108898]
[people/ms/gcc.git] / gcc / testsuite / gcc.dg / pr83930.c
CommitLineData
09cbbded
JJ
1/* PR target/83930 */
2/* { dg-do compile } */
3/* { dg-options "-Og -fno-tree-ccp -w" } */
4
5unsigned __attribute__ ((__vector_size__ (16))) v;
6
7static inline void
8bar (unsigned char d)
9{
10 v /= d;
11}
12
13__attribute__ ((always_inline)) void
14foo (void)
15{
16 bar (4);
17}