]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.dg/tree-ssa/pr110334.c
Fix profile update in tree_transform_and_unroll_loop
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / pr110334.c
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-release_ssa" } */
3 int a;
4 int ret1()
5 {
6 return a;
7 }
8 int inline
9 __attribute__((always_inline)) aret1()
10 {
11 return ret1();
12 }
13 int test()
14 {
15 return aret1();
16 }
17 /* { dg-final { scan-tree-dump-not "= ret1" "release_ssa" } } */