diff options
Diffstat (limited to '')
-rw-r--r-- | src/jit/bc.lua | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/src/jit/bc.lua b/src/jit/bc.lua index 4b384012..f1a63b9c 100644 --- a/src/jit/bc.lua +++ b/src/jit/bc.lua | |||
@@ -178,13 +178,12 @@ local function bcliston(outfile) | |||
178 | end | 178 | end |
179 | 179 | ||
180 | -- Public module functions. | 180 | -- Public module functions. |
181 | module(...) | 181 | return { |
182 | 182 | line = bcline, | |
183 | line = bcline | 183 | dump = bcdump, |
184 | dump = bcdump | 184 | targets = bctargets, |
185 | targets = bctargets | 185 | on = bcliston, |
186 | 186 | off = bclistoff, | |
187 | on = bcliston | 187 | start = bcliston -- For -j command line option. |
188 | off = bclistoff | 188 | } |
189 | start = bcliston -- For -j command line option. | ||
190 | 189 | ||