]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/tree-ssa/pr71185.c
Fix profile update in tree_transform_and_unroll_loop
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / pr71185.c
CommitLineData
eb066284
RB
1/* { dg-do compile } */
2/* { dg-options "-O3" } */
3/* { dg-options "-O3 -march=barcelona" { target x86_64-*-* i?86-*-* } } */
4
5union U { struct S { int l; int m; } p; long long a; } b;
6int a, c;
7
8void
9foo ()
10{
11 for (; b.p.m; b.a += c)
12 a = b.p.l / 65536.0 * 65536.0;
13}