From efb2b6f0378cd6fdacb7a9ee3096946e22d43f3e Mon Sep 17 00:00:00 2001 From: Ben Vanik Date: Fri, 31 Jan 2014 22:54:50 -0800 Subject: [PATCH] Fixing disasm of XO. --- src/alloy/frontend/ppc/ppc_disasm.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/alloy/frontend/ppc/ppc_disasm.cc b/src/alloy/frontend/ppc/ppc_disasm.cc index 99e325fa6..ee9f21522 100644 --- a/src/alloy/frontend/ppc/ppc_disasm.cc +++ b/src/alloy/frontend/ppc/ppc_disasm.cc @@ -115,7 +115,7 @@ void Disasm_X_RA_RB(InstrData& i, StringBuffer* str) { i.X.RA, i.X.RB); } void Disasm_XO_RT_RA_RB(InstrData& i, StringBuffer* str) { - str->Append("%*s%s%s r%d, r%d", i.XO.Rc ? -7 : -8, i.type->name, + str->Append("%*s%s%s r%d, r%d, r%d", i.XO.Rc ? -7 : -8, i.type->name, i.XO.OE ? "o" : "", i.XO.Rc ? "." : "", i.XO.RT, i.XO.RA, i.XO.RB); }