diff --git a/handwritten/hexagon_disas_c/functions.c b/handwritten/hexagon_disas_c/functions.c index b30600d4..12dfb278 100644 --- a/handwritten/hexagon_disas_c/functions.c +++ b/handwritten/hexagon_disas_c/functions.c @@ -12,7 +12,7 @@ static const HexInsnTemplate *get_sub_template_table(const ut8 duplex_iclass, bool high) { switch(duplex_iclass) { default: - RZ_LOG_WARN("IClasses > 0xe are reserved.\n"); + RZ_LOG_INFO("IClasses > 0xe are reserved.\n"); return NULL; case 0: return high ? templates_sub_L1 : templates_sub_L1; @@ -331,7 +331,7 @@ int hexagon_disasm_instruction(HexState *state, const ut32 hi_u32, RZ_INOUT HexI ut32 iclass = (((hi_u32 >> 29) & 0xF) << 1) | ((hi_u32 >> 13) & 1); if (iclass == 0xf) { - RZ_LOG_WARN("Reserved duplex instruction class used at: 0x%" PFMT32x ".\n", addr); + RZ_LOG_INFO("Reserved duplex instruction class used at: 0x%" PFMT32x ".\n", addr); } const HexInsnTemplate *tmp_high = get_sub_template_table(iclass, true);