| 3175 | } |
| 3176 | |
| 3177 | void AddInstrFunction(int funcID, int returnTypeID, int funcTypeID, String funcName) |
| 3178 | { |
| 3179 | CodeGen.OpName(funcID, funcName); |
| 3180 | CodeGen.OpFunction(funcID, returnTypeID, funcTypeID); |
| 3181 | } |
| 3182 | |
| 3183 | void AddInstrFunctionParameter(ILOperand *op, int typeID, String DebugName) |
| 3184 | { |
no test coverage detected