ast2firm: Implement casting from complex to real types.
[cparser] / type.h
diff --git a/type.h b/type.h
index 728f458..65dc386 100644 (file)
--- a/type.h
+++ b/type.h
@@ -1,21 +1,6 @@
 /*
  * This file is part of cparser.
- * Copyright (C) 2007-2009 Matthias Braun <matze@braunis.de>
- *
- * 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 <matze@braunis.de>
  */
 #ifndef TYPE_H
 #define TYPE_H
@@ -59,7 +44,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 {
@@ -78,8 +62,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;