[tibetan] Reorder PADMA sign to occur after other below marks

Based on suggestion from Andrew Glass.

Test: U+0F40,0FC6,0F83
diff --git a/src/hb-unicode-private.hh b/src/hb-unicode-private.hh
index ba193e8..991130f 100644
--- a/src/hb-unicode-private.hh
+++ b/src/hb-unicode-private.hh
@@ -112,6 +112,10 @@
      * Reorder SAKOT to ensure it comes after any tone marks. */
     if (unlikely (unicode == 0x1A60)) return 254;
 
+    /* XXX This hack belongs to the Tibetan shaper:
+     * Reorder PADMA to ensure it comes after any vowel marks. */
+    if (unlikely (unicode == 0x0FC6)) return 254;
+
     return _hb_modified_combining_class[combining_class (unicode)];
   }