aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorAndrew Pinski <andrew_pinski@playstation.sony.com>2007-08-06 02:33:44 +0000
committerAndrew Pinski <pinskia@gcc.gnu.org>2007-08-05 19:33:44 -0700
commit085f094f221211db475c4e025880539ce687394b (patch)
tree35d680fc5a6b279e28c12b5820597b2606d2f688 /gcc
parentda7dfe842751ae3b1cc87af7f54633b022417c62 (diff)
downloadgcc-085f094f221211db475c4e025880539ce687394b.zip
gcc-085f094f221211db475c4e025880539ce687394b.tar.gz
gcc-085f094f221211db475c4e025880539ce687394b.tar.bz2
sms-antideps.c: Add a "return 0" to the end of main.
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
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/ChangeLog4
-rw-r--r--gcc/testsuite/gcc.dg/sms-antideps.c1
2 files changed, 5 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index e349f1c..65dc8a7 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -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.
diff --git a/gcc/testsuite/gcc.dg/sms-antideps.c b/gcc/testsuite/gcc.dg/sms-antideps.c
index e973261..85976d6 100644
--- a/gcc/testsuite/gcc.dg/sms-antideps.c
+++ b/gcc/testsuite/gcc.dg/sms-antideps.c
@@ -31,6 +31,7 @@ main ()
unsigned long long res;
res = foo (3, 4);
+ return 0;
}