1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-12-23 20:03:43 +01:00

Tweak debug-levels a bit.

(Logical change 1.183)
This commit is contained in:
hp.com!davidm 2004-03-19 02:38:39 +00:00
parent 43db353753
commit f59f60f9ce

View file

@ -20,7 +20,7 @@ rotate_gr (struct cursor *c, int reg)
preg -= sor; /* wrap around */
}
if (sor)
Debug (16, "sor=%u rrb.gr=%u, r%d -> r%d\n", sor, rrb_gr, reg, preg);
Debug (15, "sor=%u rrb.gr=%u, r%d -> r%d\n", sor, rrb_gr, reg, preg);
return preg;
}
@ -43,7 +43,7 @@ rotate_fr (struct cursor *c, int reg)
preg -= 96; /* wrap around */
}
if (rrb_fr)
Debug (16, "rrb.fr=%u, f%d -> f%d\n", rrb_fr, reg, preg);
Debug (15, "rrb.fr=%u, f%d -> f%d\n", rrb_fr, reg, preg);
return preg;
}