From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2153) id 31AAA3858D32; Sun, 2 Oct 2022 14:43:16 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 31AAA3858D32 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1664721796; bh=LWUZdMw7B1vv8KHYnzKX5gPXh4Kl21R18sIQJRJP0bQ=; h=From:To:Subject:Date:From; b=pu43bvktEBqgkElUpLc7UuTSqy+XsWQ3mLkMJoFUVzewPoLtmVjY9nQImU90gel6A DhpZEo9etJqb7pjeLcGUjtwZHCqL8O7+TXcF4onahJOhqUivjPwGdY/9ciHaYi7Osa 23UO4dLxhRCPf04dxGgklM0RV/ba6HdysB87wDlI= 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 r13-3020] tree-cfg: Fix a verification diagnostic typo [PR107121] X-Act-Checkin: gcc X-Git-Author: Jakub Jelinek X-Git-Refname: refs/heads/master X-Git-Oldrev: b83b13331aca413cac80b0d7928b59b12e490f93 X-Git-Newrev: d01bd0b0f3b8f4c33c437ff10f0b949200627f56 Message-Id: <20221002144316.31AAA3858D32@sourceware.org> Date: Sun, 2 Oct 2022 14:43:16 +0000 (GMT) List-Id: https://gcc.gnu.org/g:d01bd0b0f3b8f4c33c437ff10f0b949200627f56 commit r13-3020-gd01bd0b0f3b8f4c33c437ff10f0b949200627f56 Author: Jakub Jelinek Date: Sun Oct 2 16:42:32 2022 +0200 tree-cfg: Fix a verification diagnostic typo [PR107121] Obvious typo in diagnostics. 2022-10-02 Jakub Jelinek PR tree-optimization/107121 * tree-cfg.cc (verify_gimple_call): Fix a typo in diagnostics, DEFFERED_INIT -> DEFERRED_INIT. Diff: --- gcc/tree-cfg.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/tree-cfg.cc b/gcc/tree-cfg.cc index ade66c54499..09fa7b64584 100644 --- a/gcc/tree-cfg.cc +++ b/gcc/tree-cfg.cc @@ -3510,7 +3510,7 @@ verify_gimple_call (gcall *stmt) if (is_constant_size_arg0 && is_constant_size_lhs) if (maybe_ne (size_from_arg0, size_from_lhs)) { - error ("% calls should have same " + error ("% calls should have same " "constant size for the first argument and LHS"); return true; }