From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2153) id D18273858D32; Tue, 5 Sep 2023 07:34:46 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org D18273858D32 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1693899286; bh=cnrXFOjWR47VuBmk+0sB0IuJP1lg+RuIh5N/gH2LrTk=; h=From:To:Subject:Date:From; b=UXxL7oE0K/zT1ZdqA76Lnjllg/Wm9WIVtNjoSAnYwSI5yfjLj2jOllxZfZhkEPDc+ NTRpDGkHVnJJX3X08ARER2GlClRYSpFn7ypjFobxSh1UaDdz/svP/M3oMYSq+BaT1y kpTZMSbDXcPHTuks+6IFdF6vT8Lu1a2bZCtBpOtU= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Jakub Jelinek To: gcc-cvs@gcc.gnu.org Subject: [gcc r14-3670] tree-ssa-tail-merge: Fix a comment typo X-Act-Checkin: gcc X-Git-Author: Jakub Jelinek X-Git-Refname: refs/heads/master X-Git-Oldrev: 137d6238ccfb06ba16699000619fd4e01e4a6278 X-Git-Newrev: f47fcd2a12971543deaae75b7f65dd55e0ef9e35 Message-Id: <20230905073446.D18273858D32@sourceware.org> Date: Tue, 5 Sep 2023 07:34:46 +0000 (GMT) List-Id: https://gcc.gnu.org/g:f47fcd2a12971543deaae75b7f65dd55e0ef9e35 commit r14-3670-gf47fcd2a12971543deaae75b7f65dd55e0ef9e35 Author: Jakub Jelinek Date: Tue Sep 5 09:34:09 2023 +0200 tree-ssa-tail-merge: Fix a comment typo I've noticed a typo in a comment, fixed thusly. 2023-09-05 Jakub Jelinek * tree-ssa-tail-merge.cc (replace_block_by): Fix a comment typo: avreage -> average. Diff: --- gcc/tree-ssa-tail-merge.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/tree-ssa-tail-merge.cc b/gcc/tree-ssa-tail-merge.cc index 33acb649d5d6..8043ad4afe6f 100644 --- a/gcc/tree-ssa-tail-merge.cc +++ b/gcc/tree-ssa-tail-merge.cc @@ -1605,7 +1605,7 @@ replace_block_by (basic_block bb1, basic_block bb2) /* If probabilities are same, we are done. If counts are nonzero we can distribute accordingly. In remaining - cases just avreage the values and hope for the best. */ + cases just average the values and hope for the best. */ e2->probability = e1->probability.combine_with_count (bb1->count, e2->probability, bb2->count); }