diff options
Diffstat (limited to 'gcc/objc')
-rw-r--r-- | gcc/objc/objc-act.c | 6 |
1 files changed, 5 insertions, 1 deletions
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]; |