fix
[libfirm] / ir / tr / trvrfy.h
index 2e3e156..4b38de1 100644 (file)
@@ -1,46 +1,48 @@
 /*
- * Project:     libFIRM
- * File name:   ir/tr/trvrfy.h
- * Purpose:     Check types and entities for correctness.
- * Author:      Michael Beck, Goetz Lindenmaier
- * Modified by:
- * Created:     29.1.2003
- * CVS-ID:      $Id$
- * Copyright:   (c) 2003 Universität Karlsruhe
- * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
- */
-#ifndef TRVRFY_H
-#define TRVRFY_H
-
-#include "firm_types.h"
-
-/**
- * @file trvrfy.h
+ * Copyright (C) 1995-2007 University of Karlsruhe.  All right reserved.
  *
- * Methods to verify the type representations.
+ * This file is part of libFirm.
  *
- * @author Michael Beck, Goetz Lindenmaier
+ * 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.
  *
- * Methods to verify the type representations.
- * Copyright 2003 University of Karlsruhe.
- * Created 29.1.2003.
+ * 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    trvrfy.h
+ * @brief   Check types and entities for correctness.
+ * @date    29.1.2003
+ * @author  Michael Beck, Goetz Lindenmaier
+ * @version $Id$
+ */
+#ifndef FIRM_TR_TRVRFY_H
+#define FIRM_TR_TRVRFY_H
+
+#include "firm_types.h"
+
 /**
  * possible trvrfy() error codes
  */
 enum trvrfy_error_codes {
-  no_error = 0,                      /**< no error */
-  error_ent_not_cont,                /**< overwritten entity not in superclass */
-  error_null_mem,                    /**< compound contains NULL member */
-  error_const_on_wrong_irg,          /**< constant placed on wrong IRG */
-  error_existent_entity_without_irg, /**< Method entities with pecularity_exist must have an irg */
-  error_wrong_ent_overwrites,        /**< number of entity overwrites exceeds number of class overwrites */
-  error_inherited_ent_without_const, /**< inherited method entity not pointing to existent entity */
-  error_glob_ent_allocation,         /**< wrong allocation of a global entity */
-  error_ent_const_mode,              /**< Mode of constant in entity did not match entities type. */
-  error_ent_wrong_owner              /**< Mode of constant in entity did not match entities type. */
+       no_error = 0,                      /**< no error */
+       error_ent_not_cont,                /**< overwritten entity not in superclass */
+       error_null_mem,                    /**< compound contains NULL member */
+       error_const_on_wrong_irg,          /**< constant placed on wrong IRG */
+       error_existent_entity_without_irg, /**< Method entities with pecularity_exist must have an irg */
+       error_wrong_ent_overwrites,        /**< number of entity overwrites exceeds number of class overwrites */
+       error_inherited_ent_without_const, /**< inherited method entity not pointing to existent entity */
+       error_glob_ent_allocation,         /**< wrong allocation of a global entity */
+       error_ent_const_mode,              /**< Mode of constant in entity did not match entities type. */
+       error_ent_wrong_owner              /**< Mode of constant in entity did not match entities type. */
 };
 
 /**
@@ -59,7 +61,7 @@ int check_type(ir_type *tp);
  *  0   if no error encountered
  *  != 0    a trvrfy_error_codes code
  */
-int check_entity(entity *ent);
+int check_entity(ir_entity *ent);
 
 /**
  * Walks the type information and performs a set of sanity checks.
@@ -84,4 +86,4 @@ int tr_vrfy(void);
 #define TR_VRFY()      tr_vrfy()
 #endif
 
-#endif /* TRVRFY_H */
+#endif /* FIRM_TR_TRVRFY_H */