diff options
Diffstat (limited to 'src/jit/dump.lua')
-rw-r--r-- | src/jit/dump.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/jit/dump.lua b/src/jit/dump.lua index ec5f8276..7b776422 100644 --- a/src/jit/dump.lua +++ b/src/jit/dump.lua | |||
@@ -63,9 +63,9 @@ local traceinfo, traceir, tracek = jutil.traceinfo, jutil.traceir, jutil.tracek | |||
63 | local tracemc, tracesnap = jutil.tracemc, jutil.tracesnap | 63 | local tracemc, tracesnap = jutil.tracemc, jutil.tracesnap |
64 | local traceexitstub, ircalladdr = jutil.traceexitstub, jutil.ircalladdr | 64 | local traceexitstub, ircalladdr = jutil.traceexitstub, jutil.ircalladdr |
65 | local bit = require("bit") | 65 | local bit = require("bit") |
66 | local band, shl, shr = bit.band, bit.lshift, bit.rshift | 66 | local band, shr = bit.band, bit.rshift |
67 | local sub, gsub, format = string.sub, string.gsub, string.format | 67 | local sub, gsub, format = string.sub, string.gsub, string.format |
68 | local byte, char, rep = string.byte, string.char, string.rep | 68 | local byte, rep = string.byte, string.rep |
69 | local type, tostring = type, tostring | 69 | local type, tostring = type, tostring |
70 | local stdout, stderr = io.stdout, io.stderr | 70 | local stdout, stderr = io.stdout, io.stderr |
71 | 71 | ||
@@ -207,7 +207,7 @@ local colortype_ansi = { | |||
207 | "\027[35m%s\027[m", | 207 | "\027[35m%s\027[m", |
208 | } | 208 | } |
209 | 209 | ||
210 | local function colorize_text(s, t) | 210 | local function colorize_text(s) |
211 | return s | 211 | return s |
212 | end | 212 | end |
213 | 213 | ||