* gcc.c-torture/execute/pr34982.c: Add forgotten return 0.

From-SVN: r131969
This commit is contained in:
Jan Hubicka 2008-01-31 00:25:35 +01:00 committed by Jan Hubicka
parent cbe9cc080e
commit 996b13caed
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2008-01-30 Jan Hubicka <jh@suse.cz>
* gcc.c-torture/execute/pr34982.c: Add forgotten return 0.
2008-01-30 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* g++.dg/other/first-global.C: Add -fpie for all pic targets.
@ -6,7 +10,7 @@
2008-01-30 Jan Hubicka <jh@suse.cz>
PR target/34982
* gcc.c-torture/execute/pr34982.c: New testcase
* gcc.c-torture/execute/pr34982.c: New testcase.
2008-01-30 Andreas Krebbel <krebbel1@de.ibm.com>

View File

@ -5,6 +5,7 @@ static void something();
int main()
{
something(-1);
return 0;
}
static void something(int i)