From 1ac71f1fa8c0ad0c691ca7a2a96d74121b75ec9e Mon Sep 17 00:00:00 2001 From: Mike Pall Date: Mon, 16 May 2011 02:38:07 +0200 Subject: ARM: Add LJ_SOFTFP define. Add support for soft-float slot handling. --- lib/dump.lua | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'lib') diff --git a/lib/dump.lua b/lib/dump.lua index 652761ff..0f9f7b2b 100644 --- a/lib/dump.lua +++ b/lib/dump.lua @@ -320,6 +320,10 @@ local function printsnap(tr, snap) else local m, ot, op1, op2 = traceir(tr, ref) out:write(colorize(format("%04d", ref), band(ot, 31))) + if band(sn, 0x80000) ~= 0 then -- SNAP_SOFTFPNUM + local m, ot, op1, op2 = traceir(tr, ref+1) + out:write(colorize(format("/%04d", ref+1), band(ot, 31))) + end end out:write(band(sn, 0x10000) == 0 and " " or "|") -- SNAP_FRAME else -- cgit v1.2.3-55-g6feb