removed ppc32_gen_decls
[libfirm] / ir / tr / typegmod.h
index bfdd7c2..9911491 100644 (file)
@@ -1,20 +1,32 @@
 /*
- * Project:     libFIRM
- * File name:   ir/tr/typegmod.h
- * Purpose:     Functionality to modify the type graph.
- * Author:      Goetz Lindenmaier
- * Modified by:
- * Created:
- * CVS-ID:      $Id$
- * Copyright:   (c) 2001-2003 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    typegmod.h
+ * @brief   Functionality to modify the type graph.
+ * @author  Goetz Lindenmaier, Michael Beck
+ * @version $Id$
+ */
+#ifndef FIRM_TR_TYPEGMOD_H
+#define FIRM_TR_TYPEGMOD_H
 
-# ifndef _TYPEGMOD_H_
-# define _TYPEGMOD_H_
-
-# include "type.h"
+#include "firm_types.h"
 
 /**
  *
@@ -36,7 +48,7 @@
  *  @param new_type  - The new type that will replace old_type.
  *
  */
-void exchange_types(type *old_type, type *new_type);
+void exchange_types(ir_type *old_type, ir_type *new_type);
 
 /** Skip id types until a useful type is reached.
  *
@@ -46,6 +58,6 @@ void exchange_types(type *old_type, type *new_type);
  *    tp if it is not an id type.
  *    If tp is an id type returns the real type it stands for.
  */
-type *skip_tid(type *tp);
+ir_type *skip_tid(ir_type *tp);
 
-# endif /*_TYPEGMOD_H_ */
+#endif /*FIRM_TR_TYPEGMOD_H */