aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/dump.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/dump.lua b/lib/dump.lua
index 41feff44..00f59977 100644
--- a/lib/dump.lua
+++ b/lib/dump.lua
@@ -397,6 +397,8 @@ local function dump_ir(tr, dumpsnap, dumpreg)
397 local litn = litname[op] 397 local litn = litname[op]
398 if litn and litn[op2] then 398 if litn and litn[op2] then
399 out:write(" ", litn[op2]) 399 out:write(" ", litn[op2])
400 elseif op == "UREFO " or op == "UREFC " then
401 out:write(format(" #%-3d", shr(op2, 8)))
400 else 402 else
401 out:write(format(" #%-3d", op2)) 403 out:write(format(" #%-3d", op2))
402 end 404 end