]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/tree-ssa/pr83329.c
Fix profile update in tree_transform_and_unroll_loop
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / pr83329.c
CommitLineData
821bbcaf
MJ
1/* { dg-do compile } */
2/* { dg-options "-O3" } */
3
4typedef struct {
5 long a;
6 long b;
7} c;
8
9c *d;
10char e, f, g;
11void h() {
12 d[0].a = &g - &f;
13 d[0].b = &e - &f;
14}