diff options
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -505,7 +505,6 @@ typedef struct Proto { | |||
505 | lu_byte numparams; /* number of fixed (named) parameters */ | 505 | lu_byte numparams; /* number of fixed (named) parameters */ |
506 | lu_byte is_vararg; | 506 | lu_byte is_vararg; |
507 | lu_byte maxstacksize; /* number of registers needed by this function */ | 507 | lu_byte maxstacksize; /* number of registers needed by this function */ |
508 | lu_byte cachemiss; /* count for successive misses for 'cache' field */ | ||
509 | int sizeupvalues; /* size of 'upvalues' */ | 508 | int sizeupvalues; /* size of 'upvalues' */ |
510 | int sizek; /* size of 'k' */ | 509 | int sizek; /* size of 'k' */ |
511 | int sizecode; | 510 | int sizecode; |
@@ -516,7 +515,6 @@ typedef struct Proto { | |||
516 | int linedefined; /* debug information */ | 515 | int linedefined; /* debug information */ |
517 | int lastlinedefined; /* debug information */ | 516 | int lastlinedefined; /* debug information */ |
518 | TValue *k; /* constants used by the function */ | 517 | TValue *k; /* constants used by the function */ |
519 | struct LClosure *cache; /* last-created closure with this prototype */ | ||
520 | Instruction *code; /* opcodes */ | 518 | Instruction *code; /* opcodes */ |
521 | struct Proto **p; /* functions defined inside the function */ | 519 | struct Proto **p; /* functions defined inside the function */ |
522 | Upvaldesc *upvalues; /* upvalue information */ | 520 | Upvaldesc *upvalues; /* upvalue information */ |