Esempio n. 1
0
static void ICACHE_FLASH_ATTR dischargejpc (FuncState *fs) {
  patchlistaux(fs, fs->jpc, fs->pc, NO_REG, fs->pc);
  fs->jpc = NO_JUMP;
}
Esempio n. 2
0
/*
** 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;
}
Esempio n. 3
0
File: lcode.cpp Progetto: swizl/lua
/*static*/ void FuncState::dischargejpc (/*FuncState *fs*/) {
	patchlistaux(jpc, pc, NO_REG, pc);
	jpc = NO_JUMP;
}