a64_emit_x64: Call interpreter

This commit is contained in:
MerryMage 2018-01-08 18:33:42 +00:00
parent b12dead76a
commit e5ace37560
3 changed files with 52 additions and 4 deletions

View file

@ -72,5 +72,13 @@ using parameter_type_t = typename FunctionInfo<Function>::template Parameter<Par
template <typename Function>
using return_type_t = typename FunctionInfo<Function>::return_type;
/**
* Helper template for retrieving the class type of a member function.
*
* @tparam Function The function type to get the return type of.
*/
template <typename Function>
using class_type_t = typename FunctionInfo<Function>::class_type;
} // namespace mp
} // namespace Dynarmic