add missing non-inline versions
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Tue, 27 May 2008 14:12:04 +0000 (14:12 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Tue, 27 May 2008 14:12:04 +0000 (14:12 +0000)
[r19798]

include/libfirm/irnode.h
ir/ir/irnode.c

index 9f7afc3..7b7ec35 100644 (file)
@@ -414,6 +414,10 @@ ir_node *get_Block_phis(const ir_node *block);
 void set_Block_phis(ir_node *block, ir_node *phi);
 /** Add a Phi node to the list of Block Phi's. */
 void add_Block_phi(ir_node *block, ir_node *phi);
+/** Get the Block mark (single bit). */
+unsigned get_Block_mark(const ir_node *block);
+/** Set the Block mark (single bit). */
+void set_Block_mark(ir_node *block, unsigned mark);
 
 /** Return the number of Keep alive node. */
 int  get_End_n_keepalives(const ir_node *end);
index d98b1de..fcd3368 100644 (file)
@@ -866,6 +866,20 @@ void (set_Block_phis)(ir_node *block, ir_node *phi) {
        _set_Block_phis(block, phi);
 }
 
+void (add_Block_phi)(ir_node *block, ir_node *phi) {
+       _add_Block_phi(block, phi);
+}
+
+/* Get the Block mark (single bit). */
+unsigned (get_Block_mark)(const ir_node *block) {
+       return _get_Block_mark(block);
+}
+
+/* Set the Block mark (single bit). */
+void (set_Block_mark)(ir_node *block, unsigned mark) {
+       _set_Block_mark(block, mark);
+}
+
 int get_End_n_keepalives(const ir_node *end) {
        assert(end->op == op_End);
        return (get_irn_arity(end) - END_KEEPALIVE_OFFSET);