X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fir%2Firopt_t.h;h=450261be26992f4083359f3b032915bff59f94d1;hb=1213046523ddd8216dce6e64bf597cd420fb752d;hp=b1998a56230dbf50d00785c19ad81aacef9dac78;hpb=1ce363f80e6a204d4011f85813362d9bd1d0e7e4;p=libfirm diff --git a/ir/ir/iropt_t.h b/ir/ir/iropt_t.h index b1998a562..450261be2 100644 --- a/ir/ir/iropt_t.h +++ b/ir/ir/iropt_t.h @@ -54,12 +54,12 @@ pset *new_identities(void); * * @param value_table the identity set */ -void del_identities(pset *value_table); +void del_identities(pset *value_table); /** * Add a node to the identities value table. */ -void add_identities(pset *value_table, ir_node *node); +void add_identities(pset *value_table, ir_node *node); /** * Compare function for two nodes in the hash table. Gets two @@ -86,10 +86,10 @@ ir_node *optimize_in_place_2(ir_node *n); */ static INLINE tarval * value_of(ir_node *n) { - if ((n != NULL) && (get_irn_op(n) == op_Const)) - return get_Const_tarval(n); /* might return tarval_bad */ - else - return tarval_bad; + if ((n != NULL) && (get_irn_op(n) == op_Const)) + return get_Const_tarval(n); /* might return tarval_bad */ + else + return tarval_bad; } /**