diff options
author | Merry <[email protected]> | 2022-04-19 15:36:26 +0100 |
---|---|---|
committer | Merry <[email protected]> | 2022-04-19 18:05:04 +0100 |
commit | 78b4ba10c930e7bb2d9b358916467f73053d45c7 (patch) | |
tree | fc031651bc03cd9d9bf75faab8fa1db5ece4a47f /tests/A64 | |
parent | ed9955891f4b276888fa91ef1b0933a47fcae155 (diff) | |
download | dynarmic-78b4ba10c930e7bb2d9b358916467f73053d45c7.tar.gz dynarmic-78b4ba10c930e7bb2d9b358916467f73053d45c7.zip |
Migrate to mcl
Diffstat (limited to 'tests/A64')
-rw-r--r-- | tests/A64/fuzz_with_unicorn.cpp | 4 | ||||
-rw-r--r-- | tests/A64/testenv.h | 5 |
2 files changed, 5 insertions, 4 deletions
diff --git a/tests/A64/fuzz_with_unicorn.cpp b/tests/A64/fuzz_with_unicorn.cpp index 433f8ca9..0307751c 100644 --- a/tests/A64/fuzz_with_unicorn.cpp +++ b/tests/A64/fuzz_with_unicorn.cpp @@ -9,16 +9,16 @@ #include <vector> #include <catch2/catch.hpp> +#include <mcl/scope_exit.hpp> +#include <mcl/stdint.hpp> #include "../fuzz_util.h" #include "../rand_int.h" #include "../unicorn_emu/a64_unicorn.h" #include "./testenv.h" -#include "dynarmic/common/common_types.h" #include "dynarmic/common/fp/fpcr.h" #include "dynarmic/common/fp/fpsr.h" #include "dynarmic/common/llvm_disassemble.h" -#include "dynarmic/common/scope_exit.h" #include "dynarmic/frontend/A64/a64_location_descriptor.h" #include "dynarmic/frontend/A64/a64_types.h" #include "dynarmic/frontend/A64/decoder/a64.h" diff --git a/tests/A64/testenv.h b/tests/A64/testenv.h index d18797f2..596d0114 100644 --- a/tests/A64/testenv.h +++ b/tests/A64/testenv.h @@ -8,8 +8,9 @@ #include <array> #include <map> -#include "dynarmic/common/assert.h" -#include "dynarmic/common/common_types.h" +#include <mcl/assert.hpp> +#include <mcl/stdint.hpp> + #include "dynarmic/interface/A64/a64.h" using Vector = Dynarmic::A64::Vector; |