2
0

lj_bc.c 291 B

1234567891011121314151617
  1. /*
  2. ** Bytecode instruction modes.
  3. ** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h
  4. */
  5. #define lj_bc_c
  6. #define LUA_CORE
  7. #include "lj_obj.h"
  8. #include "lj_bc.h"
  9. /* Bytecode instruction modes. */
  10. LJ_DATADEF const uint16_t lj_bc_mode[BC__MAX+1] = {
  11. BCDEF(BCMODE)
  12. 0
  13. };