X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;ds=sidebyside;f=type.h;h=54018fedc34752718d505d09551dcb4a0252bb5e;hb=refs%2Fheads%2Falias;hp=502096d88ca00723e2c33deab96a6837c126aa9e;hpb=952c939a1895224e3af1835ea3316fbbc1f58c73;p=cparser diff --git a/type.h b/type.h index 502096d..54018fe 100644 --- a/type.h +++ b/type.h @@ -1,28 +1,14 @@ /* * This file is part of cparser. - * Copyright (C) 2007-2009 Matthias Braun - * - * This program 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 - * of the License, or (at your option) any later version. - * - * This program 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 - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA - * 02111-1307, USA. + * Copyright (C) 2012 Matthias Braun */ #ifndef TYPE_H #define TYPE_H #include #include -#include "ast.h" + +#include "entity.h" #include "symbol.h" /** Type used to express sizes. */ @@ -32,10 +18,9 @@ typedef unsigned char il_alignment_t; /* note that the constant values represent the rank of the types as defined * in § 6.3.1 */ typedef enum atomic_type_kind_t { - ATOMIC_TYPE_INVALID = 0, - ATOMIC_TYPE_VOID, + ATOMIC_TYPE_VOID = 1, ATOMIC_TYPE_BOOL, - ATOMIC_TYPE_WCHAR_T, + ATOMIC_TYPE_WCHAR_T, /* only used in C++, in C code wchar_t is a pp-macro */ ATOMIC_TYPE_CHAR, ATOMIC_TYPE_SCHAR, ATOMIC_TYPE_UCHAR, @@ -60,7 +45,6 @@ typedef enum atomic_type_flag_t { ATOMIC_TYPE_FLAG_INTEGER = 1 << 1, ATOMIC_TYPE_FLAG_FLOAT = 1 << 2, ATOMIC_TYPE_FLAG_ARITHMETIC = 1 << 3, - ATOMIC_TYPE_FLAG_COMPLEX = 1 << 4, } atomic_type_flag_t; typedef enum type_qualifier_t { @@ -79,8 +63,6 @@ typedef unsigned short type_qualifiers_t; typedef struct type_base_t type_base_t; typedef struct atomic_type_t atomic_type_t; -typedef struct complex_type_t complex_type_t; -typedef struct imaginary_type_t imaginary_type_t; typedef struct pointer_type_t pointer_type_t; typedef struct reference_type_t reference_type_t; typedef struct function_parameter_t function_parameter_t; @@ -208,7 +190,7 @@ bool is_type_scalar(const type_t *type); * Check if a given type is incomplete. * * @param type The type to check. - * @return True if the given type is incomplete (ie. just forward). + * @return True if the given type is incomplete (i.e. just forward). */ bool is_type_incomplete(const type_t *type);