From 7cc55d70095c9d2b7094aa95530ab4db49e05cf5 Mon Sep 17 00:00:00 2001 From: wargio Date: Thu, 13 Jul 2023 11:22:18 +0800 Subject: [PATCH] Fix v3 build due fall-thru --- librz/analysis/arch/x86/x86_il.c | 1 + 1 file changed, 1 insertion(+) diff --git a/librz/analysis/arch/x86/x86_il.c b/librz/analysis/arch/x86/x86_il.c index a94ca34448e..57faa6ccd6a 100644 --- a/librz/analysis/arch/x86/x86_il.c +++ b/librz/analysis/arch/x86/x86_il.c @@ -909,6 +909,7 @@ static RzILOpPure *x86_il_get_operand_bits(X86Op op, int analysis_bits, ut64 pc, #if CS_API_MAJOR <= 3 case X86_OP_FP: RZ_LOG_WARN("RzIL: x86: Floating point instructions not implemented yet\n"); + return NULL; #endif default: return NULL;