From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by sourceware.org (Postfix) with ESMTPS id 2B3073858D32 for ; Sun, 2 Oct 2022 14:44:09 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 2B3073858D32 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=redhat.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=redhat.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1664721848; h=from:from:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:mime-version:mime-version: content-type:content-type; bh=N0+h8yQHNx+p0oiIJd6vYMWYXfT6GkhQ33io1Vk02vI=; b=i2STxguI/WbGb5xMRwjV970BN54GLA5cGnRjb6abwAV/6bpGPeD1y66gIfXoTqBwiWxybu tHOgcIv/yBpwK/24sY5+gUq15f9qRwE8PBZTj18tu9l62E+Wdmy5Ftl9Ck9l+/XGE6PSIr KqYwdRHw80C/vPPl+nCBWw3DZaciE6g= Received: from mimecast-mx02.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-128-HednkId9P0aLxkht5Ch8ug-1; Sun, 02 Oct 2022 10:44:07 -0400 X-MC-Unique: HednkId9P0aLxkht5Ch8ug-1 Received: from smtp.corp.redhat.com (int-mx09.intmail.prod.int.rdu2.redhat.com [10.11.54.9]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 3FB9D29AA2F6 for ; Sun, 2 Oct 2022 14:44:07 +0000 (UTC) Received: from tucnak.zalov.cz (unknown [10.39.192.194]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 01ADA492CA2 for ; Sun, 2 Oct 2022 14:44:06 +0000 (UTC) Received: from tucnak.zalov.cz (localhost [127.0.0.1]) by tucnak.zalov.cz (8.17.1/8.17.1) with ESMTPS id 292Ei47x1930367 (version=TLSv1.3 cipher=TLS_AES_256_GCM_SHA384 bits=256 verify=NOT) for ; Sun, 2 Oct 2022 16:44:04 +0200 Received: (from jakub@localhost) by tucnak.zalov.cz (8.17.1/8.17.1/Submit) id 292Ei3QT1930366 for gcc-patches@gcc.gnu.org; Sun, 2 Oct 2022 16:44:03 +0200 Date: Sun, 2 Oct 2022 16:44:03 +0200 From: Jakub Jelinek To: gcc-patches@gcc.gnu.org Subject: [committed] tree-cfg: Fix a verification diagnostic typo [PR107121] Message-ID: Reply-To: Jakub Jelinek MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.9 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Spam-Status: No, score=-4.1 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_DNSWL_NONE,SPF_HELO_NONE,SPF_NONE,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Hi! Obvious typo in diagnostics. Committed as obvious to trunk. 2022-10-02 Jakub Jelinek PR tree-optimization/107121 * tree-cfg.cc (verify_gimple_call): Fix a typo in diagnostics, DEFFERED_INIT -> DEFERRED_INIT. --- gcc/tree-cfg.cc.jj 2022-09-29 09:13:31.321641176 +0200 +++ gcc/tree-cfg.cc 2022-10-02 16:41:09.716365999 +0200 @@ -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; } Jakub