From 5ff994fa3767e47ebc3ed66959d63caba990d920 Mon Sep 17 00:00:00 2001 From: Mike Pall Date: Sat, 8 May 2010 18:59:59 +0200 Subject: Add weak guards. Emit TNEW/TDUP with a guard bit. --- lib/dump.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/dump.lua') diff --git a/lib/dump.lua b/lib/dump.lua index 39de30d0..f87f5e1d 100644 --- a/lib/dump.lua +++ b/lib/dump.lua @@ -391,8 +391,8 @@ local function dump_ir(tr, dumpsnap, dumpreg) out:write(format("%04d ", ins)) end out:write(format("%s%s %s %s ", - band(ot, 64) == 0 and " " or ">", - band(ot, 128) == 0 and " " or "+", + band(ot, 128) == 0 and " " or ">", + band(ot, 64) == 0 and " " or "+", irtype[t], op)) local m1 = band(m, 3) if sub(op, 1, 4) == "CALL" then -- cgit v1.2.3-55-g6feb