| 159 | } |
| 160 | |
| 161 | static std::unique_ptr<CObj> case_func(FunctionType const* Ty, void* Ptr) |
| 162 | { |
| 163 | auto NF = Ty->getFunction(Ptr); |
| 164 | return std::unique_ptr<CObj>{new CFunction{NF}}; |
| 165 | } |
| 166 | }; |
| 167 | |
| 168 | struct ConvertArgsSwitch |
nothing calls this directly
no test coverage detected