blob: 9dc75668e8dad2604328ff6a9d4abbd08d87753b [file] [log] [blame]
/* Test case to check if function foo gets split and the cold function
gets a label. */
/* { dg-require-effective-target freorder } */
/* { dg-options "-O2 -freorder-blocks-and-partition --save-temps" } */
#define SIZE 10000
const char *sarr[SIZE];
const char *buf_hot;
const char *buf_cold;
__attribute__((noinline))
void
foo (int path)
{
int i;
if (path)
{
for (i = 0; i < SIZE; i++)
sarr[i] = buf_hot;
}
else
{
for (i = 0; i < SIZE; i++)
sarr[i] = buf_cold;
}
}
int
main (int argc, char *argv[])
{
buf_hot = "hello";
buf_cold = "world";
foo (argc);
return 0;
}