From: Nicola Pero Date: Wed, 12 Dec 2001 10:41:48 +0000 (+0000) Subject: Fixed compilation of bitfields of enumerations in args and ivars X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fc9cfd2354cec7dd6b562b121205b0743c3293c9;p=gcc.git Fixed compilation of bitfields of enumerations in args and ivars From-SVN: r47928 --- diff --git a/gcc/objc/objc-act.c b/gcc/objc/objc-act.c index 3c696acdbcb..31eb05fc83e 100644 --- a/gcc/objc/objc-act.c +++ b/gcc/objc/objc-act.c @@ -6832,7 +6832,8 @@ encode_complete_bitfield (int position, tree type, int size) charType = 'q'; } } - + else if (code == ENUMERAL_TYPE) + charType = 'i'; else abort ();