Make main return 0.

2010-12-16  H.J. Lu  <hongjiu.lu@intel.com>

	PR lto/46976
	* gcc.dg/lto/pr46940_1.c (main): Return 0.

From-SVN: r167903
This commit is contained in:
H.J. Lu 2010-12-16 12:15:18 +00:00 committed by H.J. Lu
parent 5acb7dec00
commit 8f2cbdcac7
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2010-12-16 H.J. Lu <hongjiu.lu@intel.com>
PR lto/46976
* gcc.dg/lto/pr46940_1.c (main): Return 0.
2010-12-16 Chung-Lin Tang <cltang@codesourcery.com>
PR target/46883

View file

@ -1,5 +1,7 @@
extern void _moz_foo (void);
int
main()
{
_moz_foo ();
return 0;
}