From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2153) id E8F7F3857366; Thu, 3 Nov 2022 00:23:12 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org E8F7F3857366 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1667434992; bh=gcytjzCo015NxrbxpTIhYYeWvffrRJFh9PsVZL9mD2g=; h=From:To:Subject:Date:From; b=q/7XuJza06PAxgrwUyHyvXb7zOuTJmNVxCCZZ6wD56KjBbr/QF5x8SBZUctqL7L7j nXUYMV3U5EFHgFyWMiEPBn0/Y1822deBqX43UClWgUtS3mD5DGp1lmW5BsORlR8Rvm XAQ7dxTx3zjqFNDXz0ZGCMgmPzOBKGhsRnhv+CFI= 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 r12-8886] tree-cfg: Fix a verification diagnostic typo [PR107121] X-Act-Checkin: gcc X-Git-Author: Jakub Jelinek X-Git-Refname: refs/heads/releases/gcc-12 X-Git-Oldrev: c8dc6b06daf910b758bb964116ada2c5070de764 X-Git-Newrev: 7d5e6cd2d3f00d463705a5046b2920680a0ab7a9 Message-Id: <20221103002312.E8F7F3857366@sourceware.org> Date: Thu, 3 Nov 2022 00:23:12 +0000 (GMT) List-Id: https://gcc.gnu.org/g:7d5e6cd2d3f00d463705a5046b2920680a0ab7a9 commit r12-8886-g7d5e6cd2d3f00d463705a5046b2920680a0ab7a9 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. (cherry picked from commit d01bd0b0f3b8f4c33c437ff10f0b949200627f56) 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 e321d929fd0..c0824e34802 100644 --- a/gcc/tree-cfg.cc +++ b/gcc/tree-cfg.cc @@ -3475,7 +3475,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; }