]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/tree-ssa/pr70372.c
Fix profile update in tree_transform_and_unroll_loop
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / pr70372.c
CommitLineData
ce9d0c03
RB
1/* { dg-do compile } */
2/* { dg-options "-O -fno-tree-fre -w -Wno-psabi" } */
3
4typedef unsigned v2ti __attribute__ ((vector_size (32)));
5
6v2ti
7foo (v2ti u, v2ti v)
8{
9 u[0] >>= 0xf;
10 v ^= ~v;
11 v &= ~u;
12 v -= -u;
13 return v;
14}