summaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/gcc.dg/tree-ssa/ipa-split-4.c4
1 files changed, 3 insertions, 1 deletions
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);
}