// bcTable.h -- bytecode jump table definition
//
// Author: Ian.Piumarta@inria.fr
//
// last edited: Mon Jan  4 02:44:52 1999 by piumarta (Ian Piumarta) on pingu

#ifndef _bcTable_h_
#define _bcTable_h_

#include "opcodes.h"

static void *bc_tab[]= {
  &&op_OpIllegal,
# define _DO(X) &&op_##X,
  _DO_OPCODES()
# undef _DO
};

#endif _bcTable_h_

