Commit 5d3579c5 by Richard Guenther Committed by Richard Biener

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
parent 8a9a2486
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
......
/* { 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" } } */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment