From 433cb1d13a767023e03111fc09c46903f40366ff Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 15 Aug 2003 10:48:53 -0300 Subject: no more checks for non-default compilation options + luaU_dump has new option to strip debug info --- lundump.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'lundump.c') diff --git a/lundump.c b/lundump.c index 151a8507..a4a9bc26 100644 --- a/lundump.c +++ b/lundump.c @@ -1,5 +1,5 @@ /* -** $Id: lundump.c,v 1.49 2003/04/07 20:34:20 lhf Exp $ +** $Id: lundump.c,v 1.49 2003/04/07 20:34:20 lhf Exp lhf $ ** load pre-compiled Lua chunks ** See Copyright Notice in lua.h */ @@ -241,10 +241,6 @@ static void LoadHeader (LoadState* S) TESTSIZE(sizeof(int),"int"); TESTSIZE(sizeof(size_t), "size_t"); TESTSIZE(sizeof(Instruction), "Instruction"); - TESTSIZE(SIZE_OP, "OP"); - TESTSIZE(SIZE_A, "A"); - TESTSIZE(SIZE_B, "B"); - TESTSIZE(SIZE_C, "C"); TESTSIZE(sizeof(lua_Number), "number"); x=LoadNumber(S); if ((long)x!=(long)tx) /* disregard errors in last bits of fraction */ -- cgit v1.2.3-55-g6feb