示例#1
0
文件: lcode.c 项目: Squonk42/nodelua
static void ICACHE_FLASH_ATTR dischargejpc (FuncState *fs) {
  patchlistaux(fs, fs->jpc, fs->pc, NO_REG, fs->pc);
  fs->jpc = NO_JUMP;
}
示例#2
0
文件: lcode.c 项目: celskeggs/selkie
/*
** Ensure all pending jumps to current position are fixed (jumping
** to current position with no values) and reset list of pending
** jumps
*/
static void dischargejpc (FuncState *fs) {
  patchlistaux(fs, fs->jpc, fs->pc, NO_REG, fs->pc);
  fs->jpc = NO_JUMP;
}
示例#3
0
文件: lcode.cpp 项目: swizl/lua
/*static*/ void FuncState::dischargejpc (/*FuncState *fs*/) {
	patchlistaux(jpc, pc, NO_REG, pc);
	jpc = NO_JUMP;
}