Renamed VG_(nameCondcode)() as VG_(name_UCondcode)() to make it consistent
with similar functions, and made it visible to skins (useful).

Also bumped up the skin interface minor version number due to this change; this
bumping will cover any other binary-compatible changes between now and the next
release (after 1.9.3).


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1410 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/coregrind/vg_from_ucode.c b/coregrind/vg_from_ucode.c
index 63a82ae..4ec5703 100644
--- a/coregrind/vg_from_ucode.c
+++ b/coregrind/vg_from_ucode.c
@@ -1556,7 +1556,7 @@
    VG_(emitB) ( (UChar)delta );
    if (dis)
       VG_(printf)( "\n\t\tj%s-8\t%%eip+%d\n", 
-                   VG_(nameCondcode)(cond), delta );
+                   VG_(name_UCondcode)(cond), delta );
 }
 
 /* Same as above, but defers emitting the delta  */
@@ -1567,7 +1567,7 @@
    VG_(emit_target_delta) (tgt);
    if (dis)
       VG_(printf)( "\n\t\tj%s-8\t%%eip+(%d)\n", 
-                   VG_(nameCondcode)(cond), tgt_addr(*tgt) );
+                   VG_(name_UCondcode)(cond), tgt_addr(*tgt) );
 }
 
 
@@ -1579,7 +1579,7 @@
    VG_(emit_amode_ereg_greg) ( reg, 0 );
    if (dis)
       VG_(printf)("\n\t\tset%s %s\n", 
-                  VG_(nameCondcode)(cond), nameIReg(1,reg));
+                  VG_(name_UCondcode)(cond), nameIReg(1,reg));
 }
 
 static void emit_ret ( void )
@@ -2217,7 +2217,7 @@
 
          default: 
             VG_(printf)("synth_jcond_lit: unhandled simd case %d (%s)\n", 
-                        (Int)cond, VG_(nameCondcode)(cond) );
+                        (Int)cond, VG_(name_UCondcode)(cond) );
             VG_(core_panic)("synth_jcond_lit: unhandled simd case");
 
           simple: