aboutsummaryrefslogtreecommitdiff
path: root/src/jit/bc.lua
diff options
context:
space:
mode:
authorMike Pall <mike>2013-05-16 20:34:34 +0200
committerMike Pall <mike>2013-05-16 20:34:34 +0200
commitfe8773677753040345afa2c2d708fe5ea8068c8e (patch)
treed4078f02a49227468543c800b450014ca46c0913 /src/jit/bc.lua
parent647cc4613f3acd5ec8785920102af22b85cf2b9c (diff)
downloadluajit-fe8773677753040345afa2c2d708fe5ea8068c8e.tar.gz
luajit-fe8773677753040345afa2c2d708fe5ea8068c8e.tar.bz2
luajit-fe8773677753040345afa2c2d708fe5ea8068c8e.zip
Get rid of module() in all internal modules.
Diffstat (limited to 'src/jit/bc.lua')
-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