added missing include
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Fri, 18 Mar 2005 13:45:33 +0000 (13:45 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Fri, 18 Mar 2005 13:45:33 +0000 (13:45 +0000)
[r5431]

ir/opt/tailrec.c

index a9a0c41..f6210c2 100644 (file)
 #include "ircons.h"
 #include "irflag.h"
 #include "trouts.h"
-#include "firmstat.h"
+#include "return.h"
 
 /**
  * the environment for collecting data
  */
 typedef struct _collect_t {
-  ir_node *proj_X;             /**< initial exec proj */
-  ir_node *block;              /**< old first block */
-  int     blk_idx;             /**< cfgpred index of the initial exec in block */
-  ir_node *proj_m;             /**< linked list of memory from start proj's */
-  ir_node *proj_data;  /**< linked list of all parameter access proj's */
+  ir_node *proj_X;      /**< initial exec proj */
+  ir_node *block;       /**< old first block */
+  int     blk_idx;      /**< cfgpred index of the initial exec in block */
+  ir_node *proj_m;      /**< linked list of memory from start proj's */
+  ir_node *proj_data;   /**< linked list of all parameter access proj's */
 } collect_t;
 
 /**