fixed condition for add/sub esp, 4/8
[libfirm] / ir / be / beutil.h
index d25f2e4..5fbd6e3 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 1995-2007 University of Karlsruhe.  All right reserved.
+ * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
  *
  * This file is part of libFirm.
  *
@@ -54,7 +54,12 @@ pset *be_empty_set(void);
  * @return The block of the node, or the node itself, if the node is a
  *         block.
  */
-static INLINE const ir_node *get_block(const ir_node *irn)
+static INLINE ir_node *get_block(ir_node *irn)
+{
+       return is_Block(irn) ? irn : get_nodes_block(irn);
+}
+
+static INLINE const ir_node *get_block_const(const ir_node *irn)
 {
        return is_Block(irn) ? irn : get_nodes_block(irn);
 }
@@ -136,13 +141,6 @@ unsigned get_num_reachable_nodes(ir_graph *irg);
  */
 void be_kill_node(ir_node *irn);
 
-/**
- * Search for an irn in @p accept.
- * The search is started at @p start_point_exclusive and continues upwards the dom-tree
- * @return The first node out of accept if found. Else NULL is returned.
- */
-ir_node *dom_up_search(pset *accept, ir_node *start_point_exclusive);
-
 /**
  * Gets the Proj with number pn from irn.
  */