From: DJ Delorie Date: Tue, 7 Nov 2000 17:12:59 +0000 (-0500) Subject: * testsuite/gcc.dg/20000614-1.c: Add return so that test can pass. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6cc99eaf4596412179f51165e66ff22026f35e08;p=gcc.git * testsuite/gcc.dg/20000614-1.c: Add return so that test can pass. From-SVN: r37292 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a142fab0082..7ec557eb56c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2000-11-07 DJ Delorie + + * testsuite/gcc.dg/20000614-1.c: Add return so that test can pass. + 2000-11-07 Kaveh R. Ghazi * builtins.c (expand_builtin_strpbrk): New function. diff --git a/gcc/testsuite/gcc.dg/20000614-1.c b/gcc/testsuite/gcc.dg/20000614-1.c index 62d9b290267..abc8ca2f714 100644 --- a/gcc/testsuite/gcc.dg/20000614-1.c +++ b/gcc/testsuite/gcc.dg/20000614-1.c @@ -20,4 +20,5 @@ static inline void foo (unsigned long base, unsigned char val) int main (void) { foo (23, 1); + return 0; }