Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/asmjit/asmjit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkobalicek <kobalicek.petr@gmail.com>2022-03-20 21:27:04 +0300
committerkobalicek <kobalicek.petr@gmail.com>2022-03-20 21:27:04 +0300
commitd754de58c20ae6d0e3f7c3994b977fc8b79a6a80 (patch)
tree68693fa81b9c46a5c355df3088a0a9c29c6c2501
parentf1a399c4fe74d1535a4190a2b8727c51045cc914 (diff)
[Bug] Fixed logging without ARM condition codes when logged via a64::Assembler
-rw-r--r--src/asmjit/arm/a64assembler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/asmjit/arm/a64assembler.cpp b/src/asmjit/arm/a64assembler.cpp
index 9f8c9b1..485f05f 100644
--- a/src/asmjit/arm/a64assembler.cpp
+++ b/src/asmjit/arm/a64assembler.cpp
@@ -4993,7 +4993,7 @@ EmitDone:
if (Support::test(options, InstOptions::kReserved)) {
#ifndef ASMJIT_NO_LOGGING
if (_logger)
- EmitterUtils::logInstructionEmitted(this, instId, options, o0, o1, o2, opExt, 0, 0, writer.cursor());
+ EmitterUtils::logInstructionEmitted(this, BaseInst::composeARMInstId(instId, instCC), options, o0, o1, o2, opExt, 0, 0, writer.cursor());
#endif
}