PR tree-optimization/67955
[official-gcc.git] / gcc / testsuite / g++.dg / ext / attrib34.C
blobb0b9fdf6c93ec2106ad73956beb4ae8d4c78b745
1 // PR c/37171
2 // { dg-do compile }
3 // { dg-options "-O2 -fdump-tree-optimized" }
5 unsigned int f1 () __attribute__((const));
6 unsigned int f2 () __attribute__((__const));
7 unsigned int f3 () __attribute__((__const__));
9 unsigned int f4 ()
11   return f1 () + f1 () + f1 () + f1 ()
12          + f2 () + f2 () + f2 () + f2 ()
13          + f3 () + f3 () + f3 () + f3 ();
16 // { dg-final { scan-tree-dump-times "= f1 \\(\\)" 1 "optimized" } }
17 // { dg-final { scan-tree-dump-times "= f2 \\(\\)" 1 "optimized" } }
18 // { dg-final { scan-tree-dump-times "= f3 \\(\\)" 1 "optimized" } }