]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR objc++/34193 (FAIL: obj-c++.dg/gnu-runtime-2.mm (test for excess errors))
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>
Sun, 10 Feb 2008 04:58:03 +0000 (04:58 +0000)
committerKaveh Ghazi <ghazi@gcc.gnu.org>
Sun, 10 Feb 2008 04:58:03 +0000 (04:58 +0000)
PR objc++/34193
* obj-c++.dg/gnu-runtime-2.mm: Fix signature of function main().

From-SVN: r132211

gcc/testsuite/ChangeLog
gcc/testsuite/obj-c++.dg/gnu-runtime-2.mm

index aedc9a3a9da8fa2c3329529a780726ff118d421d..7aba2a3eb15dafa3a4d3c360325546087182bc98 100644 (file)
@@ -1,3 +1,8 @@
+2008-02-09  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+
+       PR objc++/34193
+       * obj-c++.dg/gnu-runtime-2.mm: Fix signature of function main().
+
 2008-02-06  Alexandre Oliva  <aoliva@redhat.com>
 
        PR c++/35056
index 2ead288353785d48102d59a7d94d06afd55a0f98..e6a1d181d903d3b0f777426a68b9a27d4c832f0a 100644 (file)
@@ -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 ();