summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-07-29 16:44:02 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-07-29 16:44:02 -0300
commit16dd77e8d95ac6d95a88cdc7b82ffad933aa4325 (patch)
tree8cad48450ec559d3139a2fad064f3cc54182d397
parent0600f968c3da21172086be04679be34fe3fb8fd1 (diff)
downloadlua-github-16dd77e8d95ac6d95a88cdc7b82ffad933aa4325.tar.gz
unused field "size" in struct TFunc.
-rw-r--r--func.c1
-rw-r--r--func.h3
-rw-r--r--undump.c9
3 files changed, 6 insertions, 7 deletions
diff --git a/func.c b/func.c
index 36f7e19f..b0792a65 100644
--- a/func.c
+++ b/func.c
@@ -21,7 +21,6 @@ void luaI_initTFunc (TFunc *f)
{
f->next = NULL;
f->marked = 0;
- f->size = 0;
f->code = NULL;
f->lineDefined = 0;
f->fileName = lua_parsedfile;
diff --git a/func.h b/func.h
index 97185b9e..240baeb4 100644
--- a/func.h
+++ b/func.h
@@ -1,5 +1,5 @@
/*
-** $Id: func.h,v 1.8 1996/03/14 15:54:20 roberto Exp roberto $
+** $Id: func.h,v 1.9 1997/05/14 18:38:29 roberto Exp roberto $
*/
#ifndef func_h
@@ -23,7 +23,6 @@ typedef struct TFunc
{
struct TFunc *next;
int marked;
- int size;
Byte *code;
int lineDefined;
char *fileName;
diff --git a/undump.c b/undump.c
index 7088dc8d..0d1ca1a4 100644
--- a/undump.c
+++ b/undump.c
@@ -3,7 +3,7 @@
** load bytecodes from files
*/
-char* rcs_undump="$Id: undump.c,v 1.23 1997/06/16 16:50:22 roberto Exp roberto $";
+char* rcs_undump="$Id: undump.c,v 1.24 1997/06/17 18:19:17 roberto Exp roberto $";
#include <stdio.h>
#include <string.h>
@@ -192,10 +192,11 @@ static char* LoadNewString(ZIO* Z)
static void LoadFunction(ZIO* Z)
{
+ int size;
TFunc* tf=new(TFunc);
tf->next=NULL;
tf->locvars=NULL;
- tf->size=LoadSize(Z);
+ size=LoadSize(Z);
tf->lineDefined=LoadWord(Z);
if (IsMain(tf)) /* new main */
{
@@ -209,8 +210,8 @@ static void LoadFunction(ZIO* Z)
memcpy(Main->code+tf->marked,&tf,sizeof(tf));
lastF=lastF->next=tf;
}
- tf->code=LoadBlock(tf->size,Z);
- if (swapword || swapfloat) FixCode(tf->code,tf->code+tf->size);
+ tf->code=LoadBlock(size,Z);
+ if (swapword || swapfloat) FixCode(tf->code,tf->code+size);
while (1) /* unthread */
{
int c=zgetc(Z);