Fix typo.

From-SVN: r161616
This commit is contained in:
Jan Hubicka 2010-06-30 16:56:02 +00:00
parent 8a9c1ae6bf
commit b1570cac54
1 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,7 @@
/* { dg-do compile } */
/* { dg-options "-O3 -fdump-tree-fnsplit" } */
int make_me_big (void);
void abort (void);
int
split_me (int a)
@ -19,7 +20,8 @@ split_me (int a)
}
}
main()
int
test(void)
{
return split_me (0)+split_me(1)+split_me(2);
}