From: Jeffrey A Law Date: Mon, 6 Apr 1998 01:05:12 +0000 (+0000) Subject: objc-act.c (encode_aggregate_within): Avoid GNU extensions in prototype and definition. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=dc544d2c5ebf81e9aa94d2890e0c1a286bcc9338;p=gcc.git objc-act.c (encode_aggregate_within): Avoid GNU extensions in prototype and definition. * objc/objc-act.c (encode_aggregate_within): Avoid GNU extensions in prototype and definition. From-SVN: r19016 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5053f01237f..7bed5d22310 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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. diff --git a/gcc/objc/objc-act.c b/gcc/objc/objc-act.c index 1f755c8bfd6..0f68bd87436 100644 --- a/gcc/objc/objc-act.c +++ b/gcc/objc/objc-act.c @@ -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) == '^')