|
From: Jeremy F. <je...@go...> - 2003-12-19 23:48:02
|
CVS commit by fitzhardinge:
Don't print prediction info for branches if we're not generating it.
M +3 -0 vg_from_ucode.c 1.70
--- valgrind/coregrind/vg_from_ucode.c #1.69:1.70
@@ -93,4 +93,7 @@ static JumpPred static_pred(Condcode con
static const Char *predstr(JumpPred p)
{
+ if (!VG_(clo_branchpred))
+ return "";
+
switch(p) {
default:
|