some workaround to avoid condeval creating Phibs which not all backends like
[libfirm] / ir / be / benodesets.c
1 #ifdef HAVE_CONFIG_H
2 #include "config.h"
3 #endif
4
5 #include "benodesets.h"
6 #include "irnode_t.h"
7
8 /*
9  * Calculates a hash value for a node.
10  *
11  * Use its node number
12  */
13 unsigned nodeset_hash(const ir_node *n) {
14         return (unsigned)get_irn_idx(n);
15 }