diff options
author | Mike Pall <mike> | 2010-08-29 20:04:40 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2010-08-29 20:04:40 +0200 |
commit | e1efd0d871e816bb6d2851b5941ba3b4b3d1d01b (patch) | |
tree | 24525d41b885e981c2471a42e8f97021cd3c4127 /src/lj_obj.h | |
parent | 7313a0821dc0c5b82ef3b6a3ad259660ff4d6d47 (diff) | |
download | luajit-e1efd0d871e816bb6d2851b5941ba3b4b3d1d01b.tar.gz luajit-e1efd0d871e816bb6d2851b5941ba3b4b3d1d01b.tar.bz2 luajit-e1efd0d871e816bb6d2851b5941ba3b4b3d1d01b.zip |
Minor tweaks to integration of assembler part.
Remove unneeded PC restore in vm_growstack_*.
Don't declare symbols that are unused in interpreter-only builds.
Don't embed lj_vm_foldfpm in interpreter-only builds.
Add 2nd temporary TValue in lua_State.
Diffstat (limited to 'src/lj_obj.h')
-rw-r--r-- | src/lj_obj.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_obj.h b/src/lj_obj.h index 762e58ce..5eaa7145 100644 --- a/src/lj_obj.h +++ b/src/lj_obj.h | |||
@@ -480,7 +480,7 @@ typedef struct global_State { | |||
480 | uint8_t vmevmask; /* VM event mask. */ | 480 | uint8_t vmevmask; /* VM event mask. */ |
481 | GCRef mainthref; /* Link to main thread. */ | 481 | GCRef mainthref; /* Link to main thread. */ |
482 | TValue registrytv; /* Anchor for registry. */ | 482 | TValue registrytv; /* Anchor for registry. */ |
483 | TValue tmptv; /* Temporary TValue. */ | 483 | TValue tmptv, tmptv2; /* Temporary TValues. */ |
484 | GCupval uvhead; /* Head of double-linked list of all open upvalues. */ | 484 | GCupval uvhead; /* Head of double-linked list of all open upvalues. */ |
485 | int32_t hookcount; /* Instruction hook countdown. */ | 485 | int32_t hookcount; /* Instruction hook countdown. */ |
486 | int32_t hookcstart; /* Start count for instruction hook counter. */ | 486 | int32_t hookcstart; /* Start count for instruction hook counter. */ |