Commit 928bcefa by Jan Hubicka Committed by Jan Hubicka

* gcc.dg/tree-prof/inliner-1.c: Fix testcase.

From-SVN: r166577
parent 4ddf1c7f
2010-11-10 Jan Hubicka <jh@suse.cz>
* gcc.dg/tree-prof/inliner-1.c: Fix testcase.
2010-11-10 Jason Merrill <jason@redhat.com> 2010-11-10 Jason Merrill <jason@redhat.com>
* g++.dg/cpp0x/constexpr-bitfield.C: New. * g++.dg/cpp0x/constexpr-bitfield.C: New.
......
...@@ -23,10 +23,14 @@ hot_function () ...@@ -23,10 +23,14 @@ hot_function ()
main () main ()
{ {
if (a) int i;
cold_function (); for (i = 0; i < 100; i++)
else {
hot_function (); if (a)
cold_function ();
else
hot_function ();
}
return 0; 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