diff options
Diffstat (limited to 'src/lj_bc.c')
-rw-r--r-- | src/lj_bc.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/lj_bc.c b/src/lj_bc.c new file mode 100644 index 00000000..79846325 --- /dev/null +++ b/src/lj_bc.c | |||
@@ -0,0 +1,17 @@ | |||
1 | /* | ||
2 | ** Bytecode instruction modes. | ||
3 | ** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h | ||
4 | */ | ||
5 | |||
6 | #define lj_bc_c | ||
7 | #define LUA_CORE | ||
8 | |||
9 | #include "lj_obj.h" | ||
10 | #include "lj_bc.h" | ||
11 | |||
12 | /* Bytecode instruction modes. */ | ||
13 | LJ_DATADEF const uint16_t lj_bc_mode[BC__MAX+1] = { | ||
14 | BCDEF(BCMODE) | ||
15 | 0 | ||
16 | }; | ||
17 | |||