From 17acb7458b3c33a10fef31c6b1770b7732a46962 Mon Sep 17 00:00:00 2001 From: Gustavo Massaccesi Date: Tue, 19 Jun 2018 11:57:11 -0300 Subject: [PATCH] avoid compiler warning in jit --- racket/src/racket/src/jit.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/racket/src/racket/src/jit.h b/racket/src/racket/src/jit.h index 7eeff679a2..01774e1728 100644 --- a/racket/src/racket/src/jit.h +++ b/racket/src/racket/src/jit.h @@ -986,7 +986,7 @@ void scheme_jit_prolog_again(mz_jit_state *jitter, int n, int ret_addr_reg) # else /* Normal internal ABI */ # define mz_prolog(x) _mz_prolog(x) -# define mz_epilog_without_jmp(x) _mz_epilog_without_jmp(x) +# define mz_epilog_without_jmp() _mz_epilog_without_jmp() # define mz_epilog(x) _mz_epilog(x) # endif # define mz_push_locals() SUBQir((LOCAL_FRAME_SIZE << JIT_LOG_WORD_SIZE), JIT_SP)