We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76c1448 commit 446c52bCopy full SHA for 446c52b
core/iwasm/interpreter/wasm_interp_fast.c
@@ -102,12 +102,12 @@ typedef float64 CellType_F64;
102
} while (0)
103
104
#if WASM_INSTRUCTION_METERING != 0
105
-#define CHECK_INSTRUCTION_LIMIT() \
106
- if (instructions_left == 0) { \
107
- wasm_set_exception(module, "instruction limit exceeded"); \
108
- goto got_exception; \
109
- } \
110
- else if (instructions_left > 0) \
+#define CHECK_INSTRUCTION_LIMIT() \
+ if (instructions_left == 0) { \
+ wasm_set_exception(module, "instruction limit exceeded"); \
+ goto got_exception; \
+ } \
+ else if (instructions_left > 0) \
111
instructions_left--;
112
113
#else
0 commit comments