re PR middle-end/42995 (inline-small-functions does not inline simple delegation calls)

2010-02-08  Richard Guenther  <rguenther@suse.de>

	PR middle-end/42995
	* gcc.dg/tree-ssa/inline-4.c: New testcase.

From-SVN: r156598
This commit is contained in:
Richard Guenther 2010-02-08 10:41:25 +00:00 committed by Richard Biener
parent 8a9a2486fb
commit 5d3579c539
2 changed files with 31 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2010-02-08 Richard Guenther <rguenther@suse.de>
PR middle-end/42995
* gcc.dg/tree-ssa/inline-4.c: New testcase.
2010-02-07 Sebastian Pop <sebastian.pop@amd.com>
* gcc.dg/graphite/block-0.c: Call abort for runtime test. Always

View File

@ -0,0 +1,26 @@
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-einline2" } */
extern int rand(void);
int get_data_for (int id)
{
return rand();
}
int my_id;
int main()
{
int res = get_data_for (my_id);
switch (res)
{
case 0:
return 666;
default:
return -1;
}
}
/* { dg-final { scan-tree-dump "Inlining get_data_for into main" "einline2" } } */
/* { dg-final { cleanup-tree-dump "einline2" } } */