diff options
author | Jeffrey A Law <law@cygnus.com> | 1998-04-06 01:05:12 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-04-05 19:05:12 -0600 |
commit | dc544d2c5ebf81e9aa94d2890e0c1a286bcc9338 (patch) | |
tree | ac34481231b680d05e5468ee4dcc9f7fad37b79d /gcc | |
parent | 38c413cd545db0a8e0e65744efa7bdd405f62d39 (diff) | |
download | gcc-dc544d2c5ebf81e9aa94d2890e0c1a286bcc9338.zip gcc-dc544d2c5ebf81e9aa94d2890e0c1a286bcc9338.tar.gz gcc-dc544d2c5ebf81e9aa94d2890e0c1a286bcc9338.tar.bz2 |
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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/objc/objc-act.c | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5053f01..7bed5d2 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 1f755c8..0f68bd8 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) == '^') |