( TypeFunPtr tfp )
| 89 | public TypeFunPtr _main = makeFun(TypeTuple.MAIN,Type.BOTTOM); |
| 90 | // Reverse from a constant function pointer to the IR function being called |
| 91 | public FunNode link( TypeFunPtr tfp ) { |
| 92 | assert tfp.isConstant(); |
| 93 | return _linker.get(tfp.makeFrom(Type.BOTTOM)); |
| 94 | } |
| 95 | |
| 96 | // Insert linker mapping from constant function signature to the function |
| 97 | // being called. |