aboutsummaryrefslogtreecommitdiff
path: root/src/jit/dump.lua
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/jit/dump.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/jit/dump.lua b/src/jit/dump.lua
index e6c9d5b6..18a4d260 100644
--- a/src/jit/dump.lua
+++ b/src/jit/dump.lua
@@ -694,9 +694,9 @@ local function dumpon(opt, outfile)
694end 694end
695 695
696-- Public module functions. 696-- Public module functions.
697module(...) 697return {
698 698 on = dumpon,
699on = dumpon 699 off = dumpoff,
700off = dumpoff 700 start = dumpon -- For -j command line option.
701start = dumpon -- For -j command line option. 701}
702 702