objc-act.c (encode_aggregate_within): Avoid GNU extensions in prototype and definition.
authorJeffrey A Law <law@cygnus.com>
Mon, 6 Apr 1998 01:05:12 +0000 (01:05 +0000)
committerJeff Law <law@gcc.gnu.org>
Mon, 6 Apr 1998 01:05:12 +0000 (19:05 -0600)
        * objc/objc-act.c (encode_aggregate_within): Avoid GNU extensions
        in prototype and definition.

From-SVN: r19016

gcc/ChangeLog
gcc/objc/objc-act.c

index 5053f01237f202b8aadd6dd262d3631d32fdc9b7..7bed5d223105bd4b684d7614005b40437f058d8f 100644 (file)
@@ -1,3 +1,8 @@
+Mon Apr  6 02:03:29 1998  Jeffrey A Law  (law@cygnus.com)
+
+       * objc/objc-act.c (encode_aggregate_within): Avoid GNU extensions
+       in prototype and definition.
+       
 Mon Apr 6 00:48:56 PDT 1998 Jeff Law  (law@cygnus.com)
 
        * version.c: Bump for snapshot.
index 1f755c8bfd6dfdf957a159bec2fcdab849118601..0f68bd87436383d66b4af159f799639359012f31 100644 (file)
@@ -196,7 +196,7 @@ static void generate_static_references              PROTO((void));
 static int check_methods_accessible            PROTO((tree, tree,
                                                       int));
 static void encode_aggregate_within            PROTO((tree, int, int,
-                                                      char, char));
+                                                      int, int));
 
 /* We handle printing method names ourselves for ObjC */
 extern char *(*decl_printable_name) ();
@@ -6552,8 +6552,8 @@ encode_aggregate_within (type, curtype, format, left, right)
      tree type;
      int curtype;
      int format;
-     char left;
-     char right;
+     int left;
+     int right;
 {
   if (obstack_object_size (&util_obstack) > 0
       && *(obstack_next_free (&util_obstack) - 1) == '^')