()
| 508 | |
| 509 | // If the _hash is set, then the Node is in the GVN table; remove it. |
| 510 | void unlock() { |
| 511 | if( _hash==0 ) return; |
| 512 | Node old = GVN.remove(this); // Pull from table |
| 513 | assert old==this; |
| 514 | _hash=0; // Out of table now |
| 515 | } |
| 516 | |
| 517 | |
| 518 | // Hash of opcode and inputs |