ppc: print 0 offset for memory operand. see issue #856
diff --git a/arch/PowerPC/PPCInstPrinter.c b/arch/PowerPC/PPCInstPrinter.c
index 45680ec..473651e 100644
--- a/arch/PowerPC/PPCInstPrinter.c
+++ b/arch/PowerPC/PPCInstPrinter.c
@@ -502,9 +502,6 @@
 {
 	if (MCOperand_isImm(MCInst_getOperand(MI, OpNo))) {
 		short Imm = (short)MCOperand_getImm(MCInst_getOperand(MI, OpNo));
-		// Do not print zero offset
-		if (Imm == 0)
-			return;
 
 		if (Imm >= 0) {
 			if (Imm > HEX_THRESHOLD)