projects
/
platform
/
upstream
/
dotnet
/
runtime.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d7fcb0d
)
[interp] Fix DEBUG_INTERP build (mono/mono#16057)
author
Vlad Brezae
<brezaevlad@gmail.com>
Wed, 7 Aug 2019 09:47:41 +0000
(12:47 +0300)
committer
GitHub
<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
patch
|
blob
|
history
diff --git
a/src/mono/mono/mini/interp/interp.c
b/src/mono/mono/mini/interp/interp.c
index
a9365f5
..
284b800
100644
(file)
--- a/
src/mono/mono/mini/interp/interp.c
+++ b/
src/mono/mono/mini/interp/interp.c
@@
-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