analyses polymorphic calls if callee info is available
[libfirm] / ir / ana / irbackedge_t.h
index 2478d02..5e3536f 100644 (file)
@@ -1,7 +1,19 @@
+/*
+ * Project:     libFIRM
+ * File name:   ir/ana/irbackedge_t.h
+ * Purpose:     Access function for backedges -- private header.
+ * Author:      Goetz Lindenmaier
+ * Modified by:
+ * Created:     7.2002
+ * CVS-ID:      $Id$
+ * Copyright:   (c) 2002-2003 Universität Karlsruhe
+ * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
+ */
+
 #ifndef _IRBACKEDGE_T_H_
 #define _IRBACKEDGE_T_H_
 
-# include "string.h"
+# include <string.h>
 
 static INLINE int * new_backedge_arr(struct obstack *obst, int size) {
   int *res = NEW_ARR_D (int, obst, size);
@@ -9,9 +21,11 @@ static INLINE int * new_backedge_arr(struct obstack *obst, int size) {
   return res;
 }
 
-/* Adapts backedges array to new size.
-   Must be called if in array of irnode is changed.  Else
-   Segmentation faults might occur.  */
+/**
+ * Adapts backedges array to new size.
+ * Must be called if in array of irnode is changed.  Else
+ * Segmentation faults might occur.
+ */
 void fix_backedges(struct obstack *obst, ir_node *n);
 
 #endif /* _IRBACKEDGE_T_H_ */