Another version of copy elimination
[libfirm] / ir / be / benodesets.c
1 #include "benodesets.h"
2 #include "irnode_t.h"
3
4 /*
5  * Calculates a hash value for a node.
6  *
7  * Use its node number
8  */
9 unsigned nodeset_hash(ir_node *n) {
10         return (unsigned)get_irn_idx(n);
11 }