sms-antideps.c: Add a "return 0" to the end of main.
authorAndrew Pinski <andrew_pinski@playstation.sony.com>
Mon, 6 Aug 2007 02:33:44 +0000 (02:33 +0000)
committerAndrew Pinski <pinskia@gcc.gnu.org>
Mon, 6 Aug 2007 02:33:44 +0000 (19:33 -0700)
2007-08-05  Andrew Pinski  <andrew_pinski@playstation.sony.com>

        * gcc.dg/sms-antideps.c: Add a "return 0" to the end of main.

From-SVN: r127235

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/sms-antideps.c

index e349f1c9cca8b19563f72aada6d4af8f602dab2e..65dc8a7058bd03c75e2aa382e9599135cd1c3882 100644 (file)
@@ -1,3 +1,7 @@
+2007-08-05  Andrew Pinski  <andrew_pinski@playstation.sony.com>
+
+       * gcc.dg/sms-antideps.c: Add a "return 0" to the end of main.
+
 2007-08-05  Volker Reichelt  <v.reichelt@netcologne.de>
 
        * g++.dg/warn/pedantic2.C: Fix error marker.  Add more tests.
index e973261999ae3c54641bee406d059a5600167378..85976d641de95acc08c549bd6773cc671ad904a2 100644 (file)
@@ -31,6 +31,7 @@ main ()
   unsigned long long res;
 
   res = foo (3, 4);
+  return 0;
 }