mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-03 21:24:38 +01:00
mp: rename mp.h to mp/function_info.h
This commit is contained in:
parent
0921678edb
commit
1edd0125b2
6 changed files with 13 additions and 11 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue