mirror of git://gcc.gnu.org/git/gcc.git
re PR c/37171 (Canonical spelling optimization dependency)
PR c/37171 * g++.dg/ext/attrib34.C: New test. From-SVN: r139904
This commit is contained in:
parent
dd59ef130e
commit
ef66fb294a
|
@ -1,3 +1,8 @@
|
|||
2008-09-02 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR c/37171
|
||||
* g++.dg/ext/attrib34.C: New test.
|
||||
|
||||
2008-09-02 Sebastian Pop <sebastian.pop@amd.com>
|
||||
Tobias Grosser <grosser@fim.uni-passau.de>
|
||||
Jan Sjodin <jan.sjodin@amd.com>
|
||||
|
|
|
@ -0,0 +1,19 @@
|
|||
// PR c/37171
|
||||
// { dg-do compile }
|
||||
// { dg-options "-O2 -fdump-tree-optimized" }
|
||||
|
||||
unsigned int f1 () __attribute__((const));
|
||||
unsigned int f2 () __attribute__((__const));
|
||||
unsigned int f3 () __attribute__((__const__));
|
||||
|
||||
unsigned int f4 ()
|
||||
{
|
||||
return f1 () + f1 () + f1 () + f1 ()
|
||||
+ f2 () + f2 () + f2 () + f2 ()
|
||||
+ f3 () + f3 () + f3 () + f3 ();
|
||||
}
|
||||
|
||||
// { dg-final { scan-tree-dump-times "= f1 \\(\\)" 1 "optimized" } }
|
||||
// { dg-final { scan-tree-dump-times "= f2 \\(\\)" 1 "optimized" } }
|
||||
// { dg-final { scan-tree-dump-times "= f3 \\(\\)" 1 "optimized" } }
|
||||
// { dg-final { cleanup-tree-dump "optimized" } }
|
Loading…
Reference in New Issue