( TypeFunPtr tfp )
| 100 | |
| 101 | // Reverse from a constant function pointer to the IR function being called |
| 102 | public FunNode link( TypeFunPtr tfp ) { |
| 103 | assert tfp.isConstant(); |
| 104 | return _linker.get(tfp.makeFrom(Type.BOTTOM)); |
| 105 | } |
| 106 | |
| 107 | public void link(FunNode fun) { |
| 108 | _linker.put(fun.sig().makeFrom(Type.BOTTOM),fun); |