X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fir%2Firdumptxt.c;h=6d2bceae440fe63ea6257af98c8dc46b16cb52b9;hb=94ad692c1439dc0b3f48e1d2de3bf662916d7343;hp=ee0ab725aea2a2260b4fc50f2f81e540e9b5e15b;hpb=863d31d7a5c8210432fef88b30fc3e8353131538;p=libfirm diff --git a/ir/ir/irdumptxt.c b/ir/ir/irdumptxt.c index ee0ab725a..6d2bceae4 100644 --- a/ir/ir/irdumptxt.c +++ b/ir/ir/irdumptxt.c @@ -1,13 +1,27 @@ /* - * Project: libFIRM - * File name: ir/ir/irdumptxt.c - * Purpose: Write vcg representation of firm to file. - * Author: Martin Trapp, Christian Schaefer - * Modified by: Goetz Lindenmaier, Hubert Schmidt - * Created: - * CVS-ID: $Id$ - * Copyright: (c) 1998-2006 Universität Karlsruhe - * Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE. + * Copyright (C) 1995-2007 University of Karlsruhe. All right reserved. + * + * This file is part of libFirm. + * + * This file may be distributed and/or modified under the terms of the + * GNU General Public License version 2 as published by the Free Software + * Foundation and appearing in the file LICENSE.GPL included in the + * packaging of this file. + * + * Licensees holding valid libFirm Professional Edition licenses may use + * this file in accordance with the libFirm Commercial License. + * Agreement provided with the Software. + * + * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE + * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE. + */ + +/** + * @file + * @brief Write vcg representation of firm to file. + * @author Martin Trapp, Christian Schaefer, Goetz Lindenmaier, Hubert Schmidt + * @version $Id$ */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -324,6 +338,9 @@ int dump_irnode_to_file(FILE *F, ir_node *n) { case iro_Confirm: fprintf(F, " compare operation: %s\n", get_pnc_string(get_Confirm_cmp(n))); break; + case iro_ASM: + fprintf(F, " assembler text: %s\n", get_ASM_text(n)); + break; default: ; }