From 08c05100cfa73ede23b0f056dfa66efe219acddc Mon Sep 17 00:00:00 2001 From: Dibyendu Majumdar Date: Fri, 1 Jan 2021 14:43:48 +0000 Subject: [PATCH] issue #203 leftover cleanup --- include/luaconf.h | 5 ----- ravi-config.h.in | 1 - src/lua.c | 4 ---- 3 files changed, 10 deletions(-) diff --git a/include/luaconf.h b/include/luaconf.h index 21a6e6d..2a7ddb1 100644 --- a/include/luaconf.h +++ b/include/luaconf.h @@ -852,11 +852,6 @@ /* Following cause the first hash lookup to be inlined, and if value is 2 then the second hash lookup is also inlined. */ #define RAVI_USE_INLINE_SHORTSTR_TGET 1 -#define RAVI_USE_LLVM_BRANCH_WEIGHTS 1 -/* If following is defined as true then LLVM instructions emitted for arithmetic ops - priority floating point ops, else default is to prioritise integer ops */ -#define RAVI_USE_LLVM_ARITH_FLOATPRIORITY 1 -/* Enables the 'defer' statement - RAVI extension */ #define RAVI_DEFER_STATEMENT #endif diff --git a/ravi-config.h.in b/ravi-config.h.in index bf82f93..69a9db7 100644 --- a/ravi-config.h.in +++ b/ravi-config.h.in @@ -2,7 +2,6 @@ #define _REDUKTI_RAVI_CONFIG_H_IN_H #cmakedefine NO_LUA_DEBUG @NO_LUA_DEBUG@ -#cmakedefine USE_LLVM @USE_LLVM@ #cmakedefine USE_OMRJIT @USE_OMRJIT@ #cmakedefine USE_MIRJIT @USE_MIRJIT@ #cmakedefine USE_RAVICOMP @USE_RAVICOMP@ diff --git a/src/lua.c b/src/lua.c index 552d288..e274dc8 100644 --- a/src/lua.c +++ b/src/lua.c @@ -4,10 +4,6 @@ ** See Copyright Notice in lua.h */ -#if USE_LLVM -#include -#endif - #define lua_c #include "lprefix.h"