re PR tree-optimization/40874 (Function object abstraction penalty with inline functions.)

2011-05-23  Richard Guenther  <rguenther@suse.de>

	PR tree-optimization/40874
	* g++.dg/tree-ssa/pr40874.C: New testcase.

From-SVN: r174068
This commit is contained in:
Richard Guenther 2011-05-23 14:36:28 +00:00 committed by Richard Biener
parent dde0506718
commit e6d944b226
2 changed files with 30 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2011-05-23 Richard Guenther <rguenther@suse.de>
PR tree-optimization/40874
* g++.dg/tree-ssa/pr40874.C: New testcase.
2011-05-23 Richard Guenther <rguenther@suse.de>
PR tree-optimization/49115

View File

@ -0,0 +1,25 @@
// { dg-do compile }
// { dg-options "-O -fdump-tree-optimized" }
struct pf
{
inline pf(int(*x)(int)) : x(x) {}
inline int operator()(int a) const
{
return x(a);
}
int (*x)(int);
};
inline int g(int x) { return x/x - 1; }
int main(int argc, char* argv[])
{
pf f(g);
return f(3);
}
// { dg-final { scan-tree-dump "return 0" "optimized" } }
// { dg-final { cleanup-tree-dump "optimized" } }