updated header
[libfirm] / ir / ana / irsimpletype.h
index 9f75174..68fdbbd 100644 (file)
@@ -1,32 +1,40 @@
-/**
- *
- * @file irsimpeltype.h
+/*
+ * Copyright (C) 1995-2007 University of Karlsruhe.  All right reserved.
  *
- * Project:     libFIRM
- * File name:   ir/ana/irsimpletype.h
- * Purpose:     Run most simple type analyses.
- * Author:      Goetz Lindenmaier
- * Modified by:
- * Created:     22.8.2003
- * CVS-ID:      $Id$
- * Copyright:   (c) 2003 Universität Karlsruhe
- * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
+ * 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.
  *
- * We compute type information for each node.  It is derived from the
- * types of the origines of values, e.g. parameter types can be derived
- * from the method type.
- * The type information so far is saved in the link field.
+ * 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    Run most simple type analyses.
+ * @author   Goetz Lindenmaier
+ * @date     22.8.2003
+ * @version  $Id$
+ * @summary
+ *  We compute type information for each node.  It is derived from the
+ *  types of the origines of values, e.g. parameter types can be derived
+ *  from the method type.
+ *  The type information so far is saved in the link field.
+ */
+#ifndef FIRM_ANA_IRSIMPLETYPE_H
+#define FIRM_ANA_IRSIMPLETYPE_H
 
-# ifndef _IRSIMPLETYPE_H_
-# define _IRSIMPLETYPE_H_
-
-# include "irgraph.h"
-# include "irnode.h"
-# include "type.h"
+#include "irgraph.h"
+#include "irnode.h"
+#include "type.h"
 
 
 
@@ -37,7 +45,7 @@
  * Computes type information for each node.  Stores the information in the
  * field defined in irtypeinfo.h. Sets typestate in irg to irg_typeinfo_consistent.
  *
- * Derives the information from nodes/pattarns that give hints about the
+ * Derives the information from nodes/patterns that give hints about the
  * type, as projecting an argument from the Start node.  Deletes all previous
  * type information.
  *
@@ -65,6 +73,6 @@ void free_simple_type_information(void);
  *  Not yet implemented, but I guess we want this for iropt, to find the
  *  type for newly allocated constants.
  */
-//type *analyse_irn_type(ir_node *node);
+/* type *analyse_irn_type(ir_node *node); */
 
-#endif /* _IRSIMPLETYPE_H_ */
+#endif