Don't print prediction info for branches if we're not generating it.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2135 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/coregrind/vg_from_ucode.c b/coregrind/vg_from_ucode.c
index fbd22cc..d371f14 100644
--- a/coregrind/vg_from_ucode.c
+++ b/coregrind/vg_from_ucode.c
@@ -92,6 +92,9 @@
 
 static const Char *predstr(JumpPred p)
 {
+   if (!VG_(clo_branchpred))
+      return "";
+
    switch(p) {
    default:
    case JP_NONE:	return "";