From a7d90ebf59fcfe9bf37f3a3c48171e342ed95276 Mon Sep 17 00:00:00 2001 From: Alix ANNERAUD Date: Sun, 2 Mar 2025 20:44:21 +0100 Subject: [PATCH] fix: format HANDLE_OP_END macro for better readability --- core/iwasm/interpreter/wasm_interp_classic.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/iwasm/interpreter/wasm_interp_classic.c b/core/iwasm/interpreter/wasm_interp_classic.c index 88e25308f..092afe347 100644 --- a/core/iwasm/interpreter/wasm_interp_classic.c +++ b/core/iwasm/interpreter/wasm_interp_classic.c @@ -1548,9 +1548,9 @@ wasm_interp_call_func_import(WASMModuleInstance *module_inst, CHECK_INSTRUCTION_LIMIT(); \ continue; #else -#define HANDLE_OP_END() -CHECK_INSTRUCTION_LIMIT(); -continue; +#define HANDLE_OP_END() \ + CHECK_INSTRUCTION_LIMIT(); \ + continue; #endif #endif /* end of WASM_ENABLE_LABELS_AS_VALUES */