diff options
Diffstat (limited to 'src/core.c')
-rw-r--r-- | src/core.c | 9 |
1 files changed, 0 insertions, 9 deletions
@@ -3,9 +3,7 @@ #include <limits.h> #include <errno.h> -#include <posthaste/interpret.h> #include <posthaste/execute.h> -#include <posthaste/compile.h> #include <posthaste/parser.h> #include <posthaste/debug.h> #include <posthaste/scope.h> @@ -85,14 +83,7 @@ int run(const char *fname) } lower_ast(ast); - -#ifdef JIT - compile(ast); execute(); -#else - interpret(); -#endif - out: free((void *)buf); destroy_lowering(); |