From c0d30539e9c2fa194ea098295a898fa7b9ef7cca Mon Sep 17 00:00:00 2001 From: neil Date: Tue, 29 Jan 2002 17:19:58 +0000 Subject: PR c/3325 * c-decl.c (enum_decl_context): Remove BITFIELD. (grokdeclarator): Take bitfield width as an input. Ensure bitfields are given the correct type. Perform bitfield width validation with build_bitfield_integer_type rather than waiting for finish_struct. (grok_typename, grok_typename_in_parm_context, start_decl, push_parmdecl, grokfield, start_function): Update calls to grokdeclarator. (build_bitfield_integer_type): New function. (finish_struct): Move bitfield validation to grokdeclarator and build_bitfield_integer_type. * tree.c (build_nonstandard_integer_type): New function. * tree.h (build_nonstandard_integer_type): New prototype. objc: * objc-act.c (objc_copy_list): Remove DECL_INITIAL kludge. testsuite: * gcc.c-torture/compile/20000224-1.c: Update. * gcc.c-torture/execute/bitfld-1.c: New tests. * gcc.dg/bitfld-1.c, bitfld-2.c: Diagnostic tests. * gcc.dg/uninit-A.c: Update. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@49321 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/tree.h | 1 + 1 file changed, 1 insertion(+) (limited to 'gcc/tree.h') diff --git a/gcc/tree.h b/gcc/tree.h index a277badb79b..930d8209673 100644 --- a/gcc/tree.h +++ b/gcc/tree.h @@ -2860,6 +2860,7 @@ extern tree getdecls PARAMS ((void)); /* Function to return the chain of structure tags in the current scope level. */ extern tree gettags PARAMS ((void)); +extern tree build_nonstandard_integer_type PARAMS ((unsigned int, int)); extern tree build_range_type PARAMS ((tree, tree, tree)); /* In alias.c */ -- cgit v1.2.1