From c6cdb66cf2c470233776fbbc5d0a099a969be469 Mon Sep 17 00:00:00 2001 From: hallgren Date: Tue, 23 Jun 2015 15:49:31 +0000 Subject: [PATCH] runtime/c/pf/jit.c: silence warning about alloca on MINGW32 --- src/runtime/c/pgf/jit.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/runtime/c/pgf/jit.c b/src/runtime/c/pgf/jit.c index 393cf67d4..35ef3ca05 100644 --- a/src/runtime/c/pgf/jit.c +++ b/src/runtime/c/pgf/jit.c @@ -6,6 +6,9 @@ #include #include #include "lightning.h" +#ifdef __MINGW32__ +#include +#endif //#define PGF_JIT_DEBUG