| 51 | class CodegenFnPtr : public CodegenFnPtrBase { |
| 52 | public: |
| 53 | FuncType load() const { |
| 54 | return reinterpret_cast<FuncType>(CodegenFnPtrBase::load()); |
| 55 | } |
| 56 | |
| 57 | void store(FuncType value) { |
| 58 | CodegenFnPtrBase::store(reinterpret_cast<void*>(value)); |