Change type of ops[] to deal with goto *p for EDG compilers

This commit is contained in:
makise-homura 2020-11-30 02:10:06 +03:00 committed by alexey.lysiuk
parent 51adcd45e6
commit 10c682acf6

View file

@ -40,7 +40,7 @@
static int ExecScriptFunc(VMFrameStack *stack, VMReturn *ret, int numret)
{
#if COMPGOTO
static const void * const ops[256] =
static void * const ops[256] =
{
#define xx(op,sym,mode,alt,kreg,ktype) &&op,
#include "vmops.h"