diff options
| author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-08-01 15:43:51 +0000 |
|---|---|---|
| committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-08-01 15:43:51 +0000 |
| commit | 19f63b4e61352bf04d1ddbfa307ea098c6037600 (patch) | |
| tree | da347a3cf7824a6aae7e8be1604bc5e5c8c3ddf8 | |
| parent | 42cf7bb0187e3c39861516d8b8fb104e8f961c6f (diff) | |
| download | ppe42-gcc-19f63b4e61352bf04d1ddbfa307ea098c6037600.tar.gz ppe42-gcc-19f63b4e61352bf04d1ddbfa307ea098c6037600.zip | |
* objc/objc-act.c (encode_complete_bitfield): Add prototype and
avoid ISO C style function definition.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55934 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 3 | ||||
| -rw-r--r-- | gcc/objc/objc-act.c | 6 |
2 files changed, 8 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 17d453a1170..f523e4be397 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ 2002-08-01 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> + * objc/objc-act.c (encode_complete_bitfield): Add prototype and + avoid ISO C style function definition. + * expr.c (expand_assignment): Delete unused variable. 2002-08-01 Toon Moene <toon@moene.indiv.nluug.nl> diff --git a/gcc/objc/objc-act.c b/gcc/objc/objc-act.c index 2ea47bc2ec9..8216d97e201 100644 --- a/gcc/objc/objc-act.c +++ b/gcc/objc/objc-act.c @@ -292,6 +292,7 @@ static void generate_classref_translation_entry PARAMS ((tree)); static void handle_class_ref PARAMS ((tree)); static void generate_struct_by_value_array PARAMS ((void)) ATTRIBUTE_NORETURN; +static void encode_complete_bitfield PARAMS ((int, tree, int)); /*** Private Interface (data) ***/ @@ -6673,7 +6674,10 @@ encode_type (type, curtype, format) } static void -encode_complete_bitfield (int position, tree type, int size) +encode_complete_bitfield (position, type, size) + int position; + tree type; + int size; { enum tree_code code = TREE_CODE (type); char buffer[40]; |

