aboutsummaryrefslogtreecommitdiff
path: root/src/jit/dump.lua
diff options
context:
space:
mode:
Diffstat (limited to 'src/jit/dump.lua')
-rw-r--r--src/jit/dump.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/jit/dump.lua b/src/jit/dump.lua
index a635af10..1eca12a8 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
63local tracemc, tracesnap = jutil.tracemc, jutil.tracesnap 63local tracemc, tracesnap = jutil.tracemc, jutil.tracesnap
64local traceexitstub, ircalladdr = jutil.traceexitstub, jutil.ircalladdr 64local traceexitstub, ircalladdr = jutil.traceexitstub, jutil.ircalladdr
65local bit = require("bit") 65local bit = require("bit")
66local band, shl, shr, tohex = bit.band, bit.lshift, bit.rshift, bit.tohex 66local band, shr, tohex = bit.band, bit.rshift, bit.tohex
67local sub, gsub, format = string.sub, string.gsub, string.format 67local sub, gsub, format = string.sub, string.gsub, string.format
68local byte, char, rep = string.byte, string.char, string.rep 68local byte, rep = string.byte, string.rep
69local type, tostring = type, tostring 69local type, tostring = type, tostring
70local stdout, stderr = io.stdout, io.stderr 70local stdout, stderr = io.stdout, io.stderr
71 71
@@ -213,7 +213,7 @@ local colortype_ansi = {
213 "\027[35m%s\027[m", 213 "\027[35m%s\027[m",
214} 214}
215 215
216local function colorize_text(s, t) 216local function colorize_text(s)
217 return s 217 return s
218end 218end
219 219