suite: normalize PPC's branch instructions having immediate operand
diff --git a/suite/test_mc.py b/suite/test_mc.py
index 6e7b64d..140c1b4 100755
--- a/suite/test_mc.py
+++ b/suite/test_mc.py
@@ -225,8 +225,15 @@
         else:
             mc_output = run_mc(archs[arch], code, mc_modes[(arch, mode)], mc_option)
         mc_output2 = normalize_hex(mc_output)
+
         if arch == 'CS_ARCH_MIPS':
             mc_output2 = mc_output2.replace(' 0(', '(')
+
+        if arch == 'CS_ARCH_PPC':
+            mc_output2 = mc_output2.replace('.+', '')
+            mc_output2 = mc_output2.replace('.', '')
+            mc_output2 = mc_output2.replace(' 0(', '(')
+
         mc_output2 = mc_output2.replace(' ', '')
         mc_output2 = mc_output2.replace('opaque', '')