Comments
Patch
===================================================================
@@ -14147,8 +14148,9 @@ ix86_print_operand (FILE *file, rtx x, int code)
if (pred_val < REG_BR_PROB_BASE * 45 / 100
|| pred_val > REG_BR_PROB_BASE * 55 / 100)
{
- int taken = pred_val > REG_BR_PROB_BASE / 2;
- int cputaken = final_forward_branch_p (current_output_insn) == 0;
+ bool taken = pred_val > REG_BR_PROB_BASE / 2;
+ bool cputaken
+ = final_forward_branch_p (current_output_insn) == 0;
/* Emit hints only in the case default branch prediction
heuristics would fail. */
Hello! 2012-03-04 Uros Bizjak <ubizjak@gmail.com> * config/i386/i386.c (ix86_print_operand) <case '+'>: Declare taken and cputaken as bool. Tested on x86_64-pc-linux-gnu {,-m32}, committed to mainline as obvious. Uros.