jit/decoder: Remove log statement from decoder hit path

Signed-off-by: Ronald Caesar <github43132@proton.me>
This commit is contained in:
Ronald Caesar 2025-11-29 15:36:07 -04:00
parent 2b5131e56c
commit fb7a2a6b32
No known key found for this signature in database
GPG key ID: 04307C401999C596

View file

@ -24,14 +24,6 @@ pvm_jit_decoder_arm32_decode (const uint32_t instruction)
if ((instruction & info->mask) == info->expected)
{
if (0 == strcmp(info->name, "UDF"))
{
LOG_WARNING("Instruction 0x%08X is undefined", instruction);
}
else
{
LOG_TRACE("Instruction found for 0x%08X: %s", instruction, info->name);
}
return info;
}
}