mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-02-22 23:42:57 +00:00
mp: rename mp.h to mp/function_info.h
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
|
||||
#include "common/assert.h"
|
||||
#include "common/bit_util.h"
|
||||
#include "common/mp.h"
|
||||
#include "common/mp/function_info.h"
|
||||
|
||||
namespace Dynarmic::Decoder {
|
||||
namespace detail {
|
||||
@@ -150,7 +150,7 @@ public:
|
||||
*/
|
||||
template<typename FnT>
|
||||
static auto GetMatcher(FnT fn, const char* const name, const char* const bitstring) {
|
||||
constexpr size_t args_count = mp::FunctionInfo<FnT>::args_count;
|
||||
constexpr size_t args_count = Common::mp::FunctionInfo<FnT>::args_count;
|
||||
using Iota = std::make_index_sequence<args_count>;
|
||||
|
||||
const auto [mask, expect] = GetMaskAndExpect(bitstring);
|
||||
|
||||
Reference in New Issue
Block a user