From: Kaveh R. Ghazi Date: Tue, 12 Feb 2008 21:44:15 +0000 (+0000) Subject: re PR objc++/34193 (FAIL: obj-c++.dg/gnu-runtime-2.mm (test for excess errors)) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0a728c7185d5d861310551ee92723730f2d1031b;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: r132273 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 6dc0c369d0b9..f2a2069372f3 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2008-02-12 Kaveh R. Ghazi + + PR objc++/34193 + * obj-c++.dg/gnu-runtime-2.mm: Fix signature of function main(). + 2008-02-10 Kaveh R. Ghazi PR objc++/27232 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 ();