[interp] Fix DEBUG_INTERP build (mono/mono#16057)
authorVlad Brezae <brezaevlad@gmail.com>
Wed, 7 Aug 2019 09:47:41 +0000 (12:47 +0300)
committerGitHub <noreply@github.com>
Wed, 7 Aug 2019 09:47:41 +0000 (12:47 +0300)
Commit migrated from https://github.com/mono/mono/commit/e702e8286fc3a7267fdd9eda572b0539446701cc

src/mono/mono/mini/interp/interp.c

index a9365f5..284b800 100644 (file)
@@ -219,7 +219,7 @@ static void debug_enter (InterpFrame *frame, int *tracing)
 #define MINT_IN_CASE(x) LAB_ ## x:
 #define MINT_IN_DISPATCH(op) goto *in_labels[op];
 #if DEBUG_INTERP
-#define MINT_IN_BREAK if (tracing > 1) MINT_IN_DISPATCH(*ip); else { COUNT_OP(*ip); goto *in_labels[*ip]; }
+#define MINT_IN_BREAK if (tracing > 1) { MINT_IN_DISPATCH(*ip); } else { COUNT_OP(*ip); goto *in_labels[*ip]; }
 #else
 #define MINT_IN_BREAK { COUNT_OP(*ip); goto *in_labels[*ip]; }
 #endif