From: Jan Hubicka Date: Wed, 30 Jun 2010 16:56:02 +0000 (+0000) Subject: Fix typo. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b1570cac5432acd5b92b2c258675842966653d22;p=gcc.git Fix typo. From-SVN: r161616 --- diff --git a/gcc/testsuite/gcc.dg/tree-ssa/ipa-split-4.c b/gcc/testsuite/gcc.dg/tree-ssa/ipa-split-4.c index c2c39602499..9d5864bad3c 100644 --- a/gcc/testsuite/gcc.dg/tree-ssa/ipa-split-4.c +++ b/gcc/testsuite/gcc.dg/tree-ssa/ipa-split-4.c @@ -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); }