Skip to content

Commit ecaf9e6

Browse files
committed
Fix native emitter compile
1 parent 0045778 commit ecaf9e6

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

py/emitglue.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
#define DEBUG_printf DEBUG_printf
4444
#define DEBUG_OP_printf(...) DEBUG_printf(__VA_ARGS__)
4545
#else // don't print debugging info
46+
#define DEBUG_PRINT (0)
4647
#define DEBUG_printf(...) (void)0
4748
#define DEBUG_OP_printf(...) (void)0
4849
#endif

py/emitnative.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
#define DEBUG_PRINT (1)
5656
#define DEBUG_printf DEBUG_printf
5757
#else // don't print debugging info
58+
#define DEBUG_PRINT (0)
5859
#define DEBUG_printf(...) (void)0
5960
#endif
6061

0 commit comments

Comments
 (0)