X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=write_fluffy.c;h=5379aee2de6901fc7793ba401a2154669b6cbb31;hb=3eb0427e93cb3a74d1ea1d8cde953c03a026c0a6;hp=3cef9e28265b47c5fb7460c4faf19ba30ee7cbad;hpb=c1f09ffd706bd46c9785ccb187da54536f566e2e;p=cparser diff --git a/write_fluffy.c b/write_fluffy.c index 3cef9e2..5379aee 100644 --- a/write_fluffy.c +++ b/write_fluffy.c @@ -1,9 +1,29 @@ +/* + * This file is part of cparser. + * Copyright (C) 2007-2008 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. + */ #include #include #include #include "write_fluffy.h" +#include "symbol_t.h" #include "ast_t.h" #include "type_t.h" #include "type.h" @@ -157,6 +177,8 @@ static void write_type(const type_t *type) case TYPE_INVALID: panic("invalid type found"); break; + case TYPE_COMPLEX: + case TYPE_IMAGINARY: default: fprintf(out, "/* TODO type */"); break; @@ -312,6 +334,7 @@ void write_fluffy_decls(FILE *output, const translation_unit_t *unit) global_scope = &unit->scope; ast_set_output(out); + type_set_output(out); fprintf(out, "/* WARNING: Automatically generated file */\n"); /* write structs,unions + enums */