2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / ext / attrib34.C
blobf4794143d1ac3c631dd4adb7d0950ff73a7f73d1
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" } }
19 // { dg-final { cleanup-tree-dump "optimized" } }