| 220 | //----------------------------------------------------------------------------- |
| 221 | |
| 222 | static FunctionDecl* CreateFunctionDecl(std::string_view funcName, params_vector params) |
| 223 | { |
| 224 | return Function(funcName, VoidTy(), params); |
| 225 | } |
| 226 | //----------------------------------------------------------------------------- |
| 227 | |
| 228 | CXXStaticCastExpr* CastToVoidFunPtr(std::string_view name) |
no test coverage detected