aboutsummaryrefslogtreecommitdiff
path: root/src/jit/bc.lua
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/jit/bc.lua17
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)
179end 179end
180 180
181-- Public module functions. 181-- Public module functions.
182module(...) 182return {
183 183 line = bcline,
184line = bcline 184 dump = bcdump,
185dump = bcdump 185 targets = bctargets,
186targets = bctargets 186 on = bcliston,
187 187 off = bclistoff,
188on = bcliston 188 start = bcliston -- For -j command line option.
189off = bclistoff 189}
190start = bcliston -- For -j command line option.
191 190