From 7c056488d96434fc9996ba8b2b2a684f03472b62 Mon Sep 17 00:00:00 2001 From: Mike Pall Date: Wed, 4 Jul 2012 21:16:06 +0200 Subject: Drop range limit for sunk stores relative to sunk allocation. --- src/jit/dump.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/jit') diff --git a/src/jit/dump.lua b/src/jit/dump.lua index 98933971..e5871b8d 100644 --- a/src/jit/dump.lua +++ b/src/jit/dump.lua @@ -378,7 +378,7 @@ local function ridsp_name(ridsp, ins) if not disass then disass = require("jit.dis_"..jit.arch) end local rid, slot = band(ridsp, 0xff), shr(ridsp, 8) if rid == 253 or rid == 254 then - return slot == 0 and " {sink" or format(" {%04d", ins-slot) + return (slot == 0 or slot == 255) and " {sink" or format(" {%04d", ins-slot) end if ridsp > 255 then return format("[%x]", slot*4) end if rid < 128 then return disass.regname(rid) end -- cgit v1.2.3-55-g6feb