From fc9cfd2354cec7dd6b562b121205b0743c3293c9 Mon Sep 17 00:00:00 2001 From: Nicola Pero Date: Wed, 12 Dec 2001 10:41:48 +0000 Subject: [PATCH] Fixed compilation of bitfields of enumerations in args and ivars From-SVN: r47928 --- gcc/objc/objc-act.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 ();