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 dd1c1f3b..566b09c3 100644 --- a/src/jit/bc.lua +++ b/src/jit/bc.lua | |||
@@ -179,13 +179,12 @@ local function bcliston(outfile) | |||
179 | end | 179 | end |
180 | 180 | ||
181 | -- Public module functions. | 181 | -- Public module functions. |
182 | module(...) | 182 | return { |
183 | 183 | line = bcline, | |
184 | line = bcline | 184 | dump = bcdump, |
185 | dump = bcdump | 185 | targets = bctargets, |
186 | targets = bctargets | 186 | on = bcliston, |
187 | 187 | off = bclistoff, | |
188 | on = bcliston | 188 | start = bcliston -- For -j command line option. |
189 | off = bclistoff | 189 | } |
190 | start = bcliston -- For -j command line option. | ||
191 | 190 | ||