- removed a few unused VM opcodes.

This commit is contained in:
Christoph Oelckers 2017-05-19 10:26:51 +02:00
commit 97b664968e
3 changed files with 0 additions and 35 deletions

View file

@ -104,14 +104,6 @@ void ThrowVMException(VMException *x);
if (a == NULL) { ThrowAbortException(x, nullptr); } \
ptr = (VM_SBYTE *)a + o
static const VM_UWORD ZapTable[16] =
{
0x00000000, 0x000000FF, 0x0000FF00, 0x0000FFFF,
0x00FF0000, 0x00FF00FF, 0x00FFFF00, 0x00FFFFFF,
0xFF000000, 0xFF0000FF, 0xFF00FF00, 0xFF00FFFF,
0xFFFF0000, 0xFFFF00FF, 0xFFFFFF00, 0xFFFFFFFF
};
#ifdef NDEBUG
#define WAS_NDEBUG 1
#else