used new is_Add(), is_Sub()
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Wed, 2 May 2007 15:31:18 +0000 (15:31 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Wed, 2 May 2007 15:31:18 +0000 (15:31 +0000)
typo fixed

[r13603]

ir/ana/compute_loop_info.c

index b1b6569..2672af8 100644 (file)
@@ -19,7 +19,7 @@
 
 /**
  * @file
- * @brief       Construct some loop infromation.
+ * @brief       Construct some loop information.
  * @author      Beyhan Veliev
  * @version     $Id$
  */
 #include "config.h"
 #endif
 
-# include "compute_loop_info.h"
-# include "strength_red.h"
-# include "tv.h"
-# include "irgwalk.h"
-# include "irloop_t.h"
-# include "irgopt.h"
-# include "irflag.h"
-# include "irouts.h"
-# include "tv.h"
+#include "compute_loop_info.h"
+#include "strength_red.h"
+#include "tv.h"
+#include "irgwalk.h"
+#include "irnode_t.h"
+#include "irloop_t.h"
+#include "irgopt.h"
+#include "irflag.h"
+#include "irouts.h"
+#include "tv.h"
 
 #undef TRUE
 #define TRUE 1   /**< For loops, that are count loop. */
@@ -70,9 +71,6 @@ static int is_count_loop(ir_node *node, ir_node *loop_head)
   return res;
 }
 
-#define is_Add(irn)   (get_irn_op(irn) == op_Add)
-#define is_Sub(irn)   (get_irn_op(irn) == op_Sub)
-
 /**
  * Compute the end value, that be reached from the iteration.
  *