1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-25 11:37:56 +00:00
freebsd/contrib/gcc/cp/decl.h

37 lines
1.5 KiB
C
Raw Normal View History

/* Variables and structures for declaration processing.
2007-05-19 01:19:51 +00:00
Copyright (C) 1993, 2000, 2002, 2004, 2005 Free Software Foundation, Inc.
2004-07-28 03:11:36 +00:00
This file is part of GCC.
2004-07-28 03:11:36 +00:00
GCC is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
2004-07-28 03:11:36 +00:00
GCC is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
2004-07-28 03:11:36 +00:00
along with GCC; see the file COPYING. If not, write to
2007-05-19 01:19:51 +00:00
the Free Software Foundation, 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA. */
/* In grokdeclarator, distinguish syntactic contexts of declarators. */
enum decl_context
{ NORMAL, /* Ordinary declaration */
FUNCDEF, /* Function definition */
PARM, /* Declaration of parm before function body */
CATCHPARM, /* Declaration of catch parm */
FIELD, /* Declaration inside struct or union */
BITFIELD, /* Likewise but with specified width */
TYPENAME, /* Typename (inside cast or sizeof) */
MEMFUNCDEF /* Member function definition */
};
/* We need this in here to get the decl_context definition. */
2007-05-19 01:19:51 +00:00
extern tree grokdeclarator (const cp_declarator *,
const cp_decl_specifier_seq *,
enum decl_context, int, tree*);