diff options
author | Merry <[email protected]> | 2021-08-06 15:28:31 +0100 |
---|---|---|
committer | Merry <[email protected]> | 2021-08-06 15:29:43 +0100 |
commit | 31cefb22a0282c0d6b96867cd67742c42984240c (patch) | |
tree | 673428e9e6322bc3a59490ced22aecd743992cc5 /tests | |
parent | 59fb568b27d941002b4b957430f83c8cf3a8cad9 (diff) | |
download | dynarmic-31cefb22a0282c0d6b96867cd67742c42984240c.tar.gz dynarmic-31cefb22a0282c0d6b96867cd67742c42984240c.zip |
fuzz_with_unicorn: Correct printing of vectors
Diffstat (limited to 'tests')
-rw-r--r-- | tests/A64/fuzz_with_unicorn.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/A64/fuzz_with_unicorn.cpp b/tests/A64/fuzz_with_unicorn.cpp index a909df22..c572d8dc 100644 --- a/tests/A64/fuzz_with_unicorn.cpp +++ b/tests/A64/fuzz_with_unicorn.cpp @@ -232,7 +232,7 @@ static void RunTestInstance(Dynarmic::A64::Jit& jit, A64Unicorn& uni, A64TestEnv } const auto uni_vecs = uni.GetVectors(); for (size_t i = 0; i < vecs.size(); ++i) { - fmt::print("{:3s}: {}{} {}{} {}\n", A64::VecToString(static_cast<A64::Vec>(i)), + fmt::print("{:3s}: {:016x}{:016x} {:016x}{:016x} {}\n", A64::VecToString(static_cast<A64::Vec>(i)), uni_vecs[i][1], uni_vecs[i][0], jit.GetVectors()[i][1], jit.GetVectors()[i][0], uni_vecs[i] != jit.GetVectors()[i] ? "*" : ""); |