Commit 9dedcfe1 by Razya Ladelsky Committed by Razya Ladelsky

ipa-6.c: New.

2006-11-26  Razya Ladklesky  <razya@il.ibm.com>

        * testsuite/gcc.dg/ipa/ipa-6.c: New.

From-SVN: r119222
parent 639b490b
2006-11-26 Razya Ladklesky <razya@il.ibm.com>
* testsuite/gcc.dg/ipa/ipa-6.c: New.
2006-11-26 Razya Ladklesky <razya@il.ibm.com>
PR tree-optimization/29122
......
/* PR middle-end/29122 */
/* { dg-do compile } */
/* { dg-options "-O3 -fipa-cp -fno-early-inlining" } */
int
dont_inline (int);
int
bar (int b, int c)
{
return dont_inline (c);
}
int
foo (int a)
{
if (a++ > 0)
bar (a, 3);
foo (7);
}
int
main ()
{
foo (7);
return 0;
}
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