From: Kaveh R. Ghazi Date: Sun, 10 Feb 2008 04:58:03 +0000 (+0000) Subject: re PR objc++/34193 (FAIL: obj-c++.dg/gnu-runtime-2.mm (test for excess errors)) X-Git-Tag: releases/gcc-4.3.0~222 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=68812e373cf46619a0ed7134d8576afd6d339682;p=thirdparty%2Fgcc.git re PR objc++/34193 (FAIL: obj-c++.dg/gnu-runtime-2.mm (test for excess errors)) PR objc++/34193 * obj-c++.dg/gnu-runtime-2.mm: Fix signature of function main(). From-SVN: r132211 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index aedc9a3a9da8..7aba2a3eb15d 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2008-02-09 Kaveh R. Ghazi + + PR objc++/34193 + * obj-c++.dg/gnu-runtime-2.mm: Fix signature of function main(). + 2008-02-06 Alexandre Oliva PR c++/35056 diff --git a/gcc/testsuite/obj-c++.dg/gnu-runtime-2.mm b/gcc/testsuite/obj-c++.dg/gnu-runtime-2.mm index 2ead28835378..e6a1d181d903 100644 --- a/gcc/testsuite/obj-c++.dg/gnu-runtime-2.mm +++ b/gcc/testsuite/obj-c++.dg/gnu-runtime-2.mm @@ -22,7 +22,7 @@ -(unsigned int) length { return len; } @end -int main(int argc, void **args) +int main(int argc, const char **args) { if (strcmp ([@"this is a string" cString], "this is a string")) abort ();